diff --git a/src/main/java/com/zontreck/AriasEssentials.java b/src/main/java/com/zontreck/AriasEssentials.java index c2bcfd7..32f0511 100644 --- a/src/main/java/com/zontreck/AriasEssentials.java +++ b/src/main/java/com/zontreck/AriasEssentials.java @@ -1,72 +1,20 @@ package com.zontreck; -import com.zontreck.block.DeprecatedModBlocks; -import com.zontreck.block.ModBlocks; -import com.zontreck.client.TimeBoostEntityRenderer; import com.zontreck.configs.client.AEClientConfig; import com.zontreck.configs.server.AEServerConfig; -import com.zontreck.effects.ModEffects; -import com.zontreck.effects.ModPotions; -import com.zontreck.enchantments.ModEnchantments; -import com.zontreck.entities.ModEntities; -import com.zontreck.items.DeprecatedModItems; -import com.zontreck.items.ModItems; -import com.zontreck.libzontreck.config.ServerConfig; -import net.minecraft.client.renderer.entity.EntityRenderers; -import net.neoforged.api.distmarker.Dist; import net.neoforged.bus.api.IEventBus; -import net.neoforged.bus.api.SubscribeEvent; -import net.neoforged.fml.common.EventBusSubscriber; -import net.neoforged.fml.common.EventBusSubscriber.Bus; import net.neoforged.fml.common.Mod; -import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent; -import java.time.Instant; -import java.util.Random; - -import org.apache.logging.log4j.Logger; - -import com.zontreck.items.CreativeModeTabs; - -import net.neoforged.fml.loading.FMLLoader; -import net.neoforged.neoforge.common.NeoForgeMod; - -@Mod(AriasEssentials.MOD_ID) -public final class AriasEssentials { - public static Logger LOGGER = LoggerFactory.getLogger("ariaessentials"); +@Mod(value = AriasEssentials.MOD_ID) +public class AriasEssentials { public static final String MOD_ID = "ariasessentials"; - public static final Random random = new Random(Instant.now().getEpochSecond()); public AriasEssentials(IEventBus bus) { - // This code runs as soon as Minecraft is in a mod-load-ready state. - // However, some things (like registries and resources) may still be - // uninitialized. - // Proceed with mild caution. - LOGGER.info("/!\\ Loading Aria's Essentials Configuration Files /!\\"); AEServerConfig.loadFromFile(); AEClientConfig.loadFromFile(); - ServerConfig.init(); - LOGGER.info("/!\\ DONE LOADING AECONFIG /!\\"); - - ModItems.ITEMS.register(bus); - CreativeModeTabs.register(bus); - ModEntities.register(bus); - ModEffects.register(bus); - ModPotions.register(bus); - DeprecatedModItems.register(bus); - ModEnchantments.register(bus); - DeprecatedModBlocks.register(bus); - ModBlocks.register(bus); } - - @EventBusSubscriber(bus = Bus.MOD, value = Dist.CLIENT) - public static class ClientModEvents { - @SubscribeEvent - public static void onClientSetup(FMLClientSetupEvent ev) { - EntityRenderers.register(ModEntities.TIAB_ENTITY.get(), TimeBoostEntityRenderer::new); - } - } + } diff --git a/src/main/java/com/zontreck/configs/client/AEClientConfig.java b/src/main/java/com/zontreck/configs/client/AEClientConfig.java index fa47bac..e068602 100644 --- a/src/main/java/com/zontreck/configs/client/AEClientConfig.java +++ b/src/main/java/com/zontreck/configs/client/AEClientConfig.java @@ -1,10 +1,11 @@ package com.zontreck.configs.client; +import java.nio.file.Path; + import com.zontreck.libzontreck.util.SNbtIo; import com.zontreck.util.EssentialsDatastore; -import net.minecraft.nbt.CompoundTag; -import java.nio.file.Path; +import net.minecraft.nbt.CompoundTag; public class AEClientConfig { diff --git a/src/main/java/com/zontreck/configs/server/AEServerConfig.java b/src/main/java/com/zontreck/configs/server/AEServerConfig.java index 656ea21..ab7afa6 100644 --- a/src/main/java/com/zontreck/configs/server/AEServerConfig.java +++ b/src/main/java/com/zontreck/configs/server/AEServerConfig.java @@ -1,6 +1,7 @@ package com.zontreck.configs.server; -import com.zontreck.AriasEssentials; +import java.nio.file.Path; + import com.zontreck.ariaslib.util.Lists; import com.zontreck.configs.server.sections.Bottles; import com.zontreck.configs.server.sections.Drops; @@ -9,11 +10,8 @@ import com.zontreck.configs.server.sections.Teleportation; import com.zontreck.libzontreck.util.SNbtIo; import com.zontreck.libzontreck.vectors.WorldPosition; import com.zontreck.util.EssentialsDatastore; -import net.minecraft.nbt.*; -import java.nio.file.Path; -import java.util.HashMap; -import java.util.Map; +import net.minecraft.nbt.CompoundTag; public class AEServerConfig { @@ -31,7 +29,6 @@ public class AEServerConfig { AEServerConfig config = new AEServerConfig(); try { - AriasEssentials.LOGGER.info("Loading Aria's Essentials configuration for - Server"); if(tag.contains(Bottles.TAG_NAME)) { config.bottles = Bottles.deserialize(tag.getCompound(Bottles.TAG_NAME)); @@ -63,8 +60,6 @@ public class AEServerConfig }else { config.worldSpawn = null; } - - AriasEssentials.LOGGER.info("Aria's Essentials Server Configuration Loaded"); } catch(Exception e){ e.printStackTrace(); } diff --git a/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java b/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java index c6c41b4..8bdef71 100644 --- a/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java +++ b/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java @@ -7,7 +7,7 @@ import java.nio.file.Path; import java.util.ArrayList; import java.util.List; -import net.minecraftforge.fml.loading.FMLPaths; +import net.neoforged.fml.loading.FMLPaths; public class FileTreeDatastore { private static final Path BASE; diff --git a/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java b/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java index 64d5942..ae7a400 100644 --- a/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java +++ b/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java @@ -1,13 +1,14 @@ package com.zontreck.libzontreck.util; -import com.mojang.brigadier.exceptions.CommandSyntaxException; -import com.zontreck.ariaslib.util.FileIO; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.NbtUtils; - import java.io.File; import java.nio.file.Path; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.zontreck.ariaslib.util.FileIO; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; + /** * Provides helpers for reading and writing snbt to file */ diff --git a/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java b/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java index eda5fbb..c7e8727 100644 --- a/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java +++ b/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java @@ -1,13 +1,13 @@ package com.zontreck.libzontreck.vectors; -import com.zontreck.libzontreck.LibZontreck; import com.zontreck.libzontreck.exceptions.InvalidDeserialization; + import net.minecraft.nbt.CompoundTag; import net.minecraft.nbt.NbtUtils; import net.minecraft.resources.ResourceLocation; import net.minecraft.server.level.ServerLevel; import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.server.ServerLifecycleHooks; +import net.neoforged.neoforge.server.ServerLifecycleHooks; public class WorldPosition implements Cloneable { @@ -37,7 +37,7 @@ public class WorldPosition implements Cloneable } public WorldPosition(ServerPlayer player) { - this(new Vector3d(player.position()), player.getLevel()); + this(new Vector3d(player.position()), player.serverLevel()); } public WorldPosition(Vector3d pos, ServerLevel lvl) { @@ -94,7 +94,8 @@ public class WorldPosition implements Cloneable String dim = Dimension; String[] dims = dim.split(":"); - ResourceLocation rl = new ResourceLocation(dims[0], dims[1]); + ResourceLocation rl = ResourceLocation.fromNamespaceAndPath(dims[0], dims[1]); + ServerLevel dimL = null; for (ServerLevel lServerLevel : ServerLifecycleHooks.getCurrentServer().getAllLevels()) { ResourceLocation XL = lServerLevel.dimension().location(); @@ -107,7 +108,6 @@ public class WorldPosition implements Cloneable } if (dimL == null) { - LibZontreck.LOGGER.error("DIMENSION COULD NOT BE FOUND : " + Dimension); return null; } diff --git a/src/old/java/com/zontreck/AriasEssentials.java b/src/old/java/com/zontreck/AriasEssentials.java new file mode 100644 index 0000000..c2bcfd7 --- /dev/null +++ b/src/old/java/com/zontreck/AriasEssentials.java @@ -0,0 +1,72 @@ +package com.zontreck; + +import com.zontreck.block.DeprecatedModBlocks; +import com.zontreck.block.ModBlocks; +import com.zontreck.client.TimeBoostEntityRenderer; +import com.zontreck.configs.client.AEClientConfig; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.effects.ModEffects; +import com.zontreck.effects.ModPotions; +import com.zontreck.enchantments.ModEnchantments; +import com.zontreck.entities.ModEntities; +import com.zontreck.items.DeprecatedModItems; +import com.zontreck.items.ModItems; +import com.zontreck.libzontreck.config.ServerConfig; + +import net.minecraft.client.renderer.entity.EntityRenderers; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.bus.api.IEventBus; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.fml.common.EventBusSubscriber.Bus; +import net.neoforged.fml.common.Mod; +import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent; + +import java.time.Instant; +import java.util.Random; + +import org.apache.logging.log4j.Logger; + +import com.zontreck.items.CreativeModeTabs; + +import net.neoforged.fml.loading.FMLLoader; +import net.neoforged.neoforge.common.NeoForgeMod; + +@Mod(AriasEssentials.MOD_ID) +public final class AriasEssentials { + public static Logger LOGGER = LoggerFactory.getLogger("ariaessentials"); + public static final String MOD_ID = "ariasessentials"; + public static final Random random = new Random(Instant.now().getEpochSecond()); + + public AriasEssentials(IEventBus bus) { + // This code runs as soon as Minecraft is in a mod-load-ready state. + // However, some things (like registries and resources) may still be + // uninitialized. + // Proceed with mild caution. + + LOGGER.info("/!\\ Loading Aria's Essentials Configuration Files /!\\"); + AEServerConfig.loadFromFile(); + AEClientConfig.loadFromFile(); + ServerConfig.init(); + LOGGER.info("/!\\ DONE LOADING AECONFIG /!\\"); + + ModItems.ITEMS.register(bus); + CreativeModeTabs.register(bus); + ModEntities.register(bus); + ModEffects.register(bus); + ModPotions.register(bus); + DeprecatedModItems.register(bus); + ModEnchantments.register(bus); + DeprecatedModBlocks.register(bus); + ModBlocks.register(bus); + + } + + @EventBusSubscriber(bus = Bus.MOD, value = Dist.CLIENT) + public static class ClientModEvents { + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent ev) { + EntityRenderers.register(ModEntities.TIAB_ENTITY.get(), TimeBoostEntityRenderer::new); + } + } +} diff --git a/src/main/java/com/zontreck/Messages.java b/src/old/java/com/zontreck/Messages.java similarity index 100% rename from src/main/java/com/zontreck/Messages.java rename to src/old/java/com/zontreck/Messages.java diff --git a/src/old/java/com/zontreck/ariaslib/http/HTTPMethod.java b/src/old/java/com/zontreck/ariaslib/http/HTTPMethod.java new file mode 100644 index 0000000..0841bef --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/http/HTTPMethod.java @@ -0,0 +1,8 @@ +package com.zontreck.ariaslib.http; + +public enum HTTPMethod { + GET, + POST, + PUT, + DELETE +} diff --git a/src/old/java/com/zontreck/ariaslib/http/HTTPRequest.java b/src/old/java/com/zontreck/ariaslib/http/HTTPRequest.java new file mode 100644 index 0000000..e3fddab --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/http/HTTPRequest.java @@ -0,0 +1,14 @@ +package com.zontreck.ariaslib.http; + +public class HTTPRequest { + + public String url; + + public String method; + public String body; + public String contentType; + + protected HTTPRequest() { + + } +} diff --git a/src/old/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java b/src/old/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java new file mode 100644 index 0000000..526b750 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java @@ -0,0 +1,131 @@ +package com.zontreck.ariaslib.http; + +import java.io.*; +import java.net.HttpURLConnection; +import java.net.MalformedURLException; +import java.net.URL; + +public class HTTPRequestBuilder { + + private HttpURLConnection connection; + private URL url; + private HTTPRequest request = new HTTPRequest(); + + public static HTTPRequestBuilder builder() { + return new HTTPRequestBuilder(); + } + + protected HTTPRequestBuilder() { + + } + + /** + * Sets the url in this request to the one supplied + * + * @param url The url to connect to + * @return Builder instance + * @throws MalformedURLException If the URL supplied was invalid + */ + public HTTPRequestBuilder withURL(String url) throws MalformedURLException { + request.url = url; + this.url = new URL(url); + + return this; + } + + /** + * Sets the HTTP Request method + * + * @param method The method you want to use + * @see HTTPMethod + * @return Builder instance + */ + public HTTPRequestBuilder withMethod(HTTPMethod method) { + switch (method) { + case GET: { + request.method = "GET"; + break; + } + case POST: { + request.method = "POST"; + if (request.contentType.isEmpty()) + request.contentType = "application/x-www-form-urlencoded"; + break; + } + case DELETE: { + request.method = "DELETE"; + break; + } + case PUT: { + request.method = "PUT"; + if (request.contentType.isEmpty()) + request.contentType = "application/x-www-form-urlencoded"; + break; + } + } + + return this; + } + + /** + * Sets the request body. This may only be processed by the server when using + * POST or PUT, depending on the server's setup + * + * @param body The body to upload + * @return Builder Instance + */ + public HTTPRequestBuilder withBody(String body) { + request.body = body; + return this; + } + + /** + * Sets the content type header + * Default: application/x-www-form-urlencoded for POST/PUT, and null/not present + * for GET + * + * @param type + * @return + */ + public HTTPRequestBuilder withContentType(String type) { + request.contentType = type; + return this; + } + + public HTTPResponse build() { + try { + connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod(request.method); + byte[] array = request.body.getBytes("UTF-8"); + connection.setRequestProperty("Content-Length", "" + array.length); + connection.setRequestProperty("Content-Type", request.contentType); + connection.setDoInput(true); + connection.setUseCaches(false); + connection.setDoOutput(true); + DataOutputStream dos = new DataOutputStream(connection.getOutputStream()); + dos.write(array); + dos.flush(); + dos.close(); + + // Get the response body + InputStream inputStream = connection.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + StringBuilder response = new StringBuilder(); + String line; + + while ((line = reader.readLine()) != null) { + response.append(line); + } + reader.close(); + inputStream.close(); + + String responseBody = response.toString(); + + return new HTTPResponse(connection.getContentType(), connection.getResponseCode(), responseBody, request); + } catch (IOException e) { + throw new RuntimeException(e); + } finally { + connection.disconnect(); + } + } +} diff --git a/src/old/java/com/zontreck/ariaslib/http/HTTPResponse.java b/src/old/java/com/zontreck/ariaslib/http/HTTPResponse.java new file mode 100644 index 0000000..d7640b4 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/http/HTTPResponse.java @@ -0,0 +1,32 @@ +package com.zontreck.ariaslib.http; + +public class HTTPResponse { + private String ContentType; + private int ResponseCode; + private String ResponseBody; + private HTTPRequest OriginalRequest; + + protected HTTPResponse(String contentType, int code, String body, HTTPRequest request) { + this.ContentType = contentType; + this.ResponseCode = code; + this.ResponseBody = body; + this.OriginalRequest = request; + + } + + public String getContentType() { + return ContentType; + } + + public int getResponseCode() { + return ResponseCode; + } + + public String getResponseBody() { + return ResponseBody; + } + + public HTTPRequest getOriginalRequest() { + return OriginalRequest; + } +} diff --git a/src/old/java/com/zontreck/ariaslib/terminal/Banners.java b/src/old/java/com/zontreck/ariaslib/terminal/Banners.java new file mode 100644 index 0000000..5545acd --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/terminal/Banners.java @@ -0,0 +1,47 @@ +package com.zontreck.ariaslib.terminal; + +import java.util.ArrayList; +import java.util.List; + +public class Banners +{ + + public static String generateBanner(String text) { + int maxLength = calculateMaxLength(text); + List bannerLines = new ArrayList<>(); + StringBuilder border = new StringBuilder(); + for (int i = 0; i < maxLength + 4; i++) { + border.append("*"); + } + bannerLines.add(border.toString()); + bannerLines.add("* " + centerText(text, maxLength) + " *"); + bannerLines.add(border.toString()); + return String.join("\n", bannerLines); + } + + private static String centerText(String text, int maxLength) { + StringBuilder centeredText = new StringBuilder(); + int spacesToAdd = (maxLength - text.length()) / 2; + for (int i = 0; i < spacesToAdd; i++) { + centeredText.append(" "); + } + centeredText.append(text); + for (int i = 0; i < spacesToAdd; i++) { + centeredText.append(" "); + } + if (centeredText.length() < maxLength) { + centeredText.append(" "); + } + return centeredText.toString(); + } + + private static int calculateMaxLength(String text) { + int maxLength = 0; + for (String line : text.split("\n")) { + if (line.length() > maxLength) { + maxLength = line.length(); + } + } + return maxLength; + } +} diff --git a/src/old/java/com/zontreck/ariaslib/terminal/Task.java b/src/old/java/com/zontreck/ariaslib/terminal/Task.java new file mode 100644 index 0000000..fb57e09 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/terminal/Task.java @@ -0,0 +1,86 @@ +package com.zontreck.ariaslib.terminal; + +import com.zontreck.ariaslib.util.Progress; + +import java.util.TimerTask; + +public abstract class Task extends TimerTask implements Runnable { + public final String TASK_NAME; + private TaskCompletionToken token = new TaskCompletionToken ( ); + + public static final String CHECK = "P"; + public static final String FAIL = "F"; + // Else use the progress spinner from the Progress class + private boolean isSilent = false; + + public Task ( String name ) { + TASK_NAME = name; + } + + /** + * This constructor is meant to be used to create silent tasks that do not output to the console. (Example usage: DelayedExecutionService) + * + * @param name Task name + * @param silent Whether to print to the terminal + */ + public Task ( String name , boolean silent ) { + this ( name ); + isSilent = silent; + } + + + public boolean isComplete ( ) { + return token.get ( ); + } + + public void startTask ( ) { + Thread tx = new Thread(this); + tx.start(); + + if(! isSilent) + { + Thread tx2 = new Thread(new SpinnerTask(token, this)); + tx2.start(); + } + } + + public void stopTask ( ) { + if ( token.get ( ) && ! isSilent ) { + System.out.printf ( "\r" + TASK_NAME + "\t\t[" + token.status + "]\n" ); + } + } + + public void setSuccess ( ) { + token.completed ( CHECK ); + } + + public void setFail ( ) { + token.completed ( FAIL ); + } + + public class SpinnerTask extends Task { + public final Task task; + public final TaskCompletionToken token; + private final Progress spinner = new Progress ( 100 ); + + public SpinnerTask ( TaskCompletionToken token , Task parent ) { + super ( "spinner" , true ); + this.token = token; + this.task = parent; + } + + @Override + public void run ( ) { + while ( ! task.isComplete ( ) ) { + try { + Thread.sleep ( 50L ); + + if ( ! task.isSilent && ! task.isComplete ( ) ) + System.out.printf ( "\r" + task.TASK_NAME + "\t\t" + spinner.getSpinnerTick ( ) + "\r" ); + } catch ( Exception e ) { + e.printStackTrace ( ); + } + } + } + } +} \ No newline at end of file diff --git a/src/old/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java b/src/old/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java new file mode 100644 index 0000000..6094019 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java @@ -0,0 +1,20 @@ +package com.zontreck.ariaslib.terminal; + +import java.util.concurrent.atomic.AtomicBoolean; + +/** + * Should not be re-used for multiple tasks!!! + */ +public class TaskCompletionToken +{ + private AtomicBoolean complete = new AtomicBoolean(false); + public String status = ""; + public void completed(String reason){ + status=reason; + complete.set(true); + } + + public boolean get(){ + return complete.get(); + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/FileIO.java b/src/old/java/com/zontreck/ariaslib/util/FileIO.java new file mode 100644 index 0000000..f517adf --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/FileIO.java @@ -0,0 +1,51 @@ +package com.zontreck.ariaslib.util; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; + +public class FileIO +{ + + public static String readFile(String filePath) { + try { + byte[] fileBytes = Files.readAllBytes(Paths.get(filePath)); + return new String(fileBytes); + } catch (IOException e) { + return "An error occurred: " + e.getMessage(); + } + } + public static void writeFile(String filePath, String newContent) { + try { + Files.write(Paths.get(filePath), newContent.getBytes()); + } catch (IOException e) { + } + } + + + /** + * Recursively delete a directory + * @param directory The folder to delete + */ + public static void deleteDirectory(File directory) { + if (directory.exists()) { + File[] files = directory.listFiles(); + if (files != null) { + for (File file : files) { + if (file.isDirectory()) { + deleteDirectory(file); + } else { + file.delete(); + } + } + } + // Now directory is empty, so delete it + directory.delete(); + System.out.println("Directory deleted: " + directory.getAbsolutePath()); + } else { + System.out.println("Directory does not exist: " + directory.getAbsolutePath()); + } + } +} + diff --git a/src/old/java/com/zontreck/ariaslib/util/Hashing.java b/src/old/java/com/zontreck/ariaslib/util/Hashing.java new file mode 100644 index 0000000..08c77c2 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/Hashing.java @@ -0,0 +1,120 @@ +package com.zontreck.ariaslib.util; + +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; + +public class Hashing +{ + + + /** + * A md5 hashing function that is compatible with literally every other hashing function out there + * @param input The string to hash + * @return The hash + */ + public static String md5(String input) { + try { + MessageDigest md = MessageDigest.getInstance("MD5"); + md.update(input.getBytes()); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + /** + * A md5 hashing function that is compatible with literally every other hashing function out there + * @param input The bytes to hash + * @return The hash + */ + public static String md5(byte[] input) { + try { + MessageDigest md = MessageDigest.getInstance("MD5"); + md.update(input); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + + + /** + * A sha256 hashing function that is compatible with literally every other hashing function out there + * @param input The string to hash + * @return The hash + */ + public static String sha256(String input) { + try { + MessageDigest md = MessageDigest.getInstance("SHA256"); + md.update(input.getBytes()); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + /** + * A sha256 hashing function that is compatible with literally every other hashing function out there + * @param input The bytes to hash + * @return The hash + */ + public static String sha256(byte[] input) { + try { + MessageDigest md = MessageDigest.getInstance("SHA256"); + md.update(input); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/Lists.java b/src/old/java/com/zontreck/ariaslib/util/Lists.java new file mode 100644 index 0000000..f0fe39b --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/Lists.java @@ -0,0 +1,94 @@ +package com.zontreck.ariaslib.util; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +public class Lists +{ + /** + * Programatically constructs a list + * @param values The list of values + * @return The new list + * @param An arbitrary type parameter + */ + public static List of(T... values) + { + List arr = new ArrayList<>(); + for(T value : values) + { + arr.add(value); + } + + return arr; + } + + + /** + * Splits a string into a list + * @param input The string to split + * @param delimiters The list of delimiters + * @return A non-strided list + */ + public static List split(String input, String... delimiters) { + List result = new ArrayList<>(); + StringBuilder regex = new StringBuilder("("); + + // Constructing the regular expression pattern with provided delimiters + for (String delimiter : delimiters) { + regex.append(delimiter).append("|"); + } + regex.deleteCharAt(regex.length() - 1); // Remove the extra '|' character + regex.append(")"); + + String[] tokens = input.split(regex.toString()); + + // Add non-empty tokens to the result list + for (String token : tokens) { + if (!token.isEmpty()) { + result.add(token); + } + } + + return result; + } + + /** + * Split a string, and keep the delimiters + * @param input The string to be parsed and split + * @param delimiters A list of delimiters + * @return A strided list containing the parsed options, and the delimiters + */ + public static List splitWithDelim(String input, String... delimiters) { + List result = new ArrayList<>(); + StringBuilder regex = new StringBuilder("("); + + // Constructing the regular expression pattern with provided delimiters + for (String delimiter : delimiters) { + regex.append(delimiter).append("|"); + } + regex.deleteCharAt(regex.length() - 1); // Remove the extra '|' character + regex.append(")"); + + // Splitting the input string using the regex pattern + String[] tokens = input.split(regex.toString()); + + // Adding tokens and delimiters to the result list in a strided manner + for (int i = 0; i < tokens.length; i++) { + if (!tokens[i].isEmpty()) { + result.add(tokens[i]); + } + // Adding delimiter if it exists and it's not the last token + if (i < tokens.length - 1) { + result.add(input.substring(input.indexOf(tokens[i]) + tokens[i].length(), input.indexOf(tokens[i + 1]))); + } + } + + return result; + } + + + private Lists(){ + + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/Maps.java b/src/old/java/com/zontreck/ariaslib/util/Maps.java new file mode 100644 index 0000000..d8de013 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/Maps.java @@ -0,0 +1,49 @@ +package com.zontreck.ariaslib.util; + +import java.util.HashMap; +import java.util.Map; + +/** + * Utility class to assist in creating a dictionary programmatically in one line of code. + */ +public class Maps +{ + /** + * This takes a list of entries and returns a HashMap + * @param entries The entries you want in your hashmap + * @return The map itself + * @param Any typed parameter + * @param Any typed parameter + */ + public static Map of(Entry... entries) { + Map map = new HashMap<>(); + for(Entry E : entries) + { + map.put(E.key, E.value); + } + + return map; + } + + /** + * A virtual entry used only by the Maps#of function. + * @see Maps#of(Entry[]) + * @param Any typed parameter + * @param Any typed parameter + */ + public static class Entry { + public final A key; + public final B value; + + /** + * Initializes the readonly entry + * @param a The dictionary key + * @param b The value + */ + public Entry(A a, B b) + { + this.key=a; + this.value=b; + } + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/MathUtil.java b/src/old/java/com/zontreck/ariaslib/util/MathUtil.java new file mode 100644 index 0000000..4dc7924 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/MathUtil.java @@ -0,0 +1,18 @@ +package com.zontreck.ariaslib.util; + +/** + * This class will be used to house math helper functions + */ +public class MathUtil +{ + /** + * A newer helper function to get the percentage with large number support + * @param current Min value + * @param max Maximum value for progress + * @return Percentage + */ + public static int getPercent(long current, long max) + { + return Math.round(current*100/max); + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/Percent.java b/src/old/java/com/zontreck/ariaslib/util/Percent.java new file mode 100644 index 0000000..a8e75d7 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/Percent.java @@ -0,0 +1,23 @@ +package com.zontreck.ariaslib.util; + +import java.io.PrintStream; + +public class Percent +{ + int current; + int maximum; + + public Percent(int cur, int max) + { + current=cur; + maximum=max; + } + + + public int get() + { + return ((current * 100) / maximum); + } + + +} diff --git a/src/old/java/com/zontreck/ariaslib/util/Progress.java b/src/old/java/com/zontreck/ariaslib/util/Progress.java new file mode 100644 index 0000000..af51310 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/Progress.java @@ -0,0 +1,56 @@ +package com.zontreck.ariaslib.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class Progress +{ + private int maximum; + private int current; + private AtomicInteger tickNum = new AtomicInteger(0); + private static final String TICKS="-\\|/"; + + public String getSpinnerTick() + { + if(tickNum.get()>=TICKS.length()) tickNum.set(0); + + return "[" + TICKS.substring(tickNum.getAndIncrement(), tickNum.get()) + "]"; + } + + public Progress(int maximum) + { + current=0; + this.maximum=maximum; + } + + public int getPercent(){ + return (current*100/maximum); + } + + public String getPercentStr() + { + return (getPercent()+"%"); + } + + public static int getPercentOf(int current, int max) + { + return (current*100/max); + } + + public void increment(){ + current++; + sanity(); + } + private void sanity(){ + if(current > maximum) current = maximum; + if(current < 0)current = 0; + } + public void decrement(){ + current--; + sanity(); + } + + public void setCurrent(int cur) + { + current=cur; + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/ProgressBar.java b/src/old/java/com/zontreck/ariaslib/util/ProgressBar.java new file mode 100644 index 0000000..5fbcb84 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/ProgressBar.java @@ -0,0 +1,66 @@ +package com.zontreck.ariaslib.util; + +import java.io.PrintStream; + +/** + * Utility to create an ascii progress bar + */ +public class ProgressBar +{ + + private static final int DEFAULT_BAR_WIDTH = 50; + + /** + * Reserved spaces for the brackets, and the carrot, and the percent value. + */ + private static final int PROGRESS_BAR_RESERVED=5; + + /** + * Always will return 80 + * @return 80 + */ + private static int getConsoleWidth() { + return 80; // Default console width, can be adjusted for different consoles + } + + /** + * Build a progress bar + *

+ * your text here [========= ] 40% your text here + * @param percent The percentage + * @param beforeText + * @param afterText + * @return ProgressBar as a String + */ + public static String printProgressBar(int percent, String beforeText, String afterText) { + StringBuilder sb = new StringBuilder(); + int consoleWidth = getConsoleWidth(); + int barWidth = Math.min(consoleWidth - beforeText.length() - afterText.length() - PROGRESS_BAR_RESERVED, DEFAULT_BAR_WIDTH); + + // Calculate progress + int progressBarLength = (int) ((double) percent / 100 * barWidth); + + // Print before text + sb.append(beforeText); + + // Print progress bar + sb.append("["); + for (int i = 0; i < barWidth; i++) { + if (i < progressBarLength) { + sb.append("="); + }else if(i==progressBarLength) sb.append(">"); + else { + sb.append(" "); + } + } + sb.append("]"); + + // Print percentage + sb.append(" " + percent + "%"); + + // Print after text + sb.append(afterText); + + return sb.toString(); + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/TimeNotation.java b/src/old/java/com/zontreck/ariaslib/util/TimeNotation.java new file mode 100644 index 0000000..6ea72eb --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/TimeNotation.java @@ -0,0 +1,161 @@ +package com.zontreck.ariaslib.util; + +import java.util.List; + +/** + * Contains useful structures and functions for dealing with, and manipulation of, time. + */ +public class TimeNotation +{ + public int Years; + public int Months; + public int Weeks; + public int Days; + public int Hours; + public int Minutes; + public int Seconds; + + public TimeNotation(int years, int months, int weeks, int days, int hours, int minutes, int seconds) + { + Years=years; + Months=months; + Weeks=weeks; + Days=days; + Hours=hours; + Minutes=minutes; + Seconds = seconds; + } + + private TimeNotation(){} + + + @Override + public String toString() { + String str = + someOrNone(Years,Pluralize(Years, "year") + ", ") + + someOrNone(Months, Pluralize(Months, "month") + ", ") + + someOrNone(Weeks, Pluralize(Weeks, "week") + ", ") + + someOrNone(Days, Pluralize(Days, "day") + ", ") + + someOrNone(Hours, Pluralize(Hours, "hour") + ", ") + + someOrNone(Minutes, Pluralize(Minutes, "minute") + ", ") + + someOrNone(Seconds, Pluralize(Seconds, "second")); + + if(str == ""){ + return "No Seconds"; + } else return str; + } + + /** + * Create a plural version for a number + * @param num The number to prefix + * @param str The singular form of the string + * @return Combined string, num + str in plural form if necessary + */ + private String Pluralize(int num, String str) + { + return num + " " + ((num > 1) ? str+"s" : str); + } + + /** + * A simple function to test a number, return a string, or return nothing at all. + * @param num The number to check + * @param str The string to return if the number is greater than zero + * @return Str if num >1, or empty string + */ + private String someOrNone(int num, String str) + { + if(num > 0) return str; + else return ""; + } + /** + * A simple function to test a number, return a string, or return something else. + * @param num The number to check + * @param str The string to return if the number is greater than zero + * @return Str if num >1, or other string + */ + private String someOrOther(int num, String str, String other) + { + if(num > 0) return str; + else return other; + } + + /** + * Encodes time notation! + * @return A program readable string that can be decoded back to a time notation + */ + public String toNotation() + { + return Years + "Y" + Months + "M" + Weeks + "W" + Days + "d" + Hours + "h" + Minutes + "m" + Seconds + "s"; + } + + /** + * Parses a time notation string + * @param notation Serialized time notation + * @return The deserialized time notation object + */ + public static TimeNotation fromNotation(String notation) + { + TimeNotation notationX = new TimeNotation(); + String[] delims = new String[]{"Y", "M", "W", "d", "h", "m", "s"}; + List opts = Lists.split(notation, delims); + + + int index = 0; + for(String dlim : delims) + { + if(notation.contains(dlim)) + { + switch (dlim) + { + case "Y": + { + notationX.Years = Integer.parseInt(opts.get(index)); + + break; + } + case "M": + { + notationX.Months = Integer.parseInt(opts.get(index)); + + break; + } + case "W": + { + notationX.Weeks = Integer.parseInt(opts.get(index)); + + break; + } + case "d": + { + notationX.Days = Integer.parseInt(opts.get(index)); + + break; + } + case "h": + { + notationX.Hours = Integer.parseInt(opts.get(index)); + + break; + } + case "m": + { + notationX.Minutes = Integer.parseInt(opts.get(index)); + + break; + } + case "s": + { + notationX.Seconds = Integer.parseInt(opts.get(index)); + + break; + } + } + + index++; + } + } + + return notationX; + + } +} diff --git a/src/old/java/com/zontreck/ariaslib/util/TimeUtil.java b/src/old/java/com/zontreck/ariaslib/util/TimeUtil.java new file mode 100644 index 0000000..587cb16 --- /dev/null +++ b/src/old/java/com/zontreck/ariaslib/util/TimeUtil.java @@ -0,0 +1,96 @@ +package com.zontreck.ariaslib.util; + +/** + * This class is a helper with some minecraft specific functions + */ +public class TimeUtil +{ + /** + * Converts seconds to ticks. (seconds*ticks) + * @param seconds Number of seconds + * @param ticks Number of ticks in a single second + * @return Number of ticks + */ + public static int secondsToTicks(int seconds, int ticks) + { + return seconds*ticks; + } + + /** + * Converts the number of ticks to seconds + * @param ticks The number of ticks to convert + * @param ticksInASecond The number of ticks in a single second + * @return Number of seconds + */ + public static int ticksToSeconds(int ticks, int ticksInASecond) + { + return ticks / ticksInASecond; + } + + /** + * Encodes a LibAC Time Notation + * @param seconds Number of seconds to convert + * @return Time Notation + */ + public static TimeNotation secondsToTimeNotation(int seconds) + { + int years = seconds / YEAR; + if(years > 0) seconds -= YEAR * years; + + int month = seconds / MONTH; + if(month > 0) seconds -= MONTH * month; + + int week = seconds / WEEK; + if(week > 0) seconds -= WEEK * week; + + int day = seconds / DAY; + if(day > 0) seconds -= DAY * day; + + int hour = seconds / HOUR; + if(hour > 0) seconds -= HOUR * hour; + + int minute = seconds / MINUTE; + if(minute > 0) seconds -= MINUTE * minute; + + return new TimeNotation(years, month, week, day, hour, minute, seconds); + } + + /** + * Convert a time notation to seconds + * @param notation Notation to convert + * @return Total seconds + */ + public static int notationToSeconds(TimeNotation notation) + { + int seconds = 0; + + seconds += (notation.Years * YEAR); + seconds += (notation.Months * MONTH); + seconds += (notation.Weeks * WEEK); + seconds += (notation.Days * DAY); + seconds += (notation.Hours * HOUR); + seconds += (notation.Minutes * MINUTE); + seconds += (notation.Seconds); + + return seconds; + } + + + public static final int SECOND; + public static final int MINUTE; + public static final int HOUR; + public static final int DAY; + public static final int WEEK; + public static final int MONTH; + public static final int YEAR; + + static { + SECOND = 1; + MINUTE = SECOND * 60; + HOUR = MINUTE * 60; + DAY = HOUR*24; + WEEK = DAY*7; + MONTH = WEEK*4; + YEAR = DAY*365; + } +} diff --git a/src/main/java/com/zontreck/block/DeprecatedBlock.java b/src/old/java/com/zontreck/block/DeprecatedBlock.java similarity index 100% rename from src/main/java/com/zontreck/block/DeprecatedBlock.java rename to src/old/java/com/zontreck/block/DeprecatedBlock.java diff --git a/src/main/java/com/zontreck/block/DeprecatedBlockItem.java b/src/old/java/com/zontreck/block/DeprecatedBlockItem.java similarity index 100% rename from src/main/java/com/zontreck/block/DeprecatedBlockItem.java rename to src/old/java/com/zontreck/block/DeprecatedBlockItem.java diff --git a/src/main/java/com/zontreck/block/DeprecatedModBlocks.java b/src/old/java/com/zontreck/block/DeprecatedModBlocks.java similarity index 100% rename from src/main/java/com/zontreck/block/DeprecatedModBlocks.java rename to src/old/java/com/zontreck/block/DeprecatedModBlocks.java diff --git a/src/main/java/com/zontreck/block/FoiledBlockItem.java b/src/old/java/com/zontreck/block/FoiledBlockItem.java similarity index 100% rename from src/main/java/com/zontreck/block/FoiledBlockItem.java rename to src/old/java/com/zontreck/block/FoiledBlockItem.java diff --git a/src/main/java/com/zontreck/block/MiniSunBlock.java b/src/old/java/com/zontreck/block/MiniSunBlock.java similarity index 100% rename from src/main/java/com/zontreck/block/MiniSunBlock.java rename to src/old/java/com/zontreck/block/MiniSunBlock.java diff --git a/src/main/java/com/zontreck/block/ModBlocks.java b/src/old/java/com/zontreck/block/ModBlocks.java similarity index 100% rename from src/main/java/com/zontreck/block/ModBlocks.java rename to src/old/java/com/zontreck/block/ModBlocks.java diff --git a/src/main/java/com/zontreck/block/RegistryObj.java b/src/old/java/com/zontreck/block/RegistryObj.java similarity index 100% rename from src/main/java/com/zontreck/block/RegistryObj.java rename to src/old/java/com/zontreck/block/RegistryObj.java diff --git a/src/main/java/com/zontreck/block/RotatableBlock.java b/src/old/java/com/zontreck/block/RotatableBlock.java similarity index 100% rename from src/main/java/com/zontreck/block/RotatableBlock.java rename to src/old/java/com/zontreck/block/RotatableBlock.java diff --git a/src/main/java/com/zontreck/block/VoidBlock.java b/src/old/java/com/zontreck/block/VoidBlock.java similarity index 100% rename from src/main/java/com/zontreck/block/VoidBlock.java rename to src/old/java/com/zontreck/block/VoidBlock.java diff --git a/src/main/java/com/zontreck/block/types/AlternatePaneBlock.java b/src/old/java/com/zontreck/block/types/AlternatePaneBlock.java similarity index 100% rename from src/main/java/com/zontreck/block/types/AlternatePaneBlock.java rename to src/old/java/com/zontreck/block/types/AlternatePaneBlock.java diff --git a/src/main/java/com/zontreck/client/BlockFaceTextRenderer.java b/src/old/java/com/zontreck/client/BlockFaceTextRenderer.java similarity index 100% rename from src/main/java/com/zontreck/client/BlockFaceTextRenderer.java rename to src/old/java/com/zontreck/client/BlockFaceTextRenderer.java diff --git a/src/main/java/com/zontreck/client/TimeBoostEntityRenderer.java b/src/old/java/com/zontreck/client/TimeBoostEntityRenderer.java similarity index 100% rename from src/main/java/com/zontreck/client/TimeBoostEntityRenderer.java rename to src/old/java/com/zontreck/client/TimeBoostEntityRenderer.java diff --git a/src/main/java/com/zontreck/commands/CommandRegistry.java b/src/old/java/com/zontreck/commands/CommandRegistry.java similarity index 100% rename from src/main/java/com/zontreck/commands/CommandRegistry.java rename to src/old/java/com/zontreck/commands/CommandRegistry.java diff --git a/src/main/java/com/zontreck/commands/homes/DelHomeCommand.java b/src/old/java/com/zontreck/commands/homes/DelHomeCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/homes/DelHomeCommand.java rename to src/old/java/com/zontreck/commands/homes/DelHomeCommand.java diff --git a/src/main/java/com/zontreck/commands/homes/HomeCommand.java b/src/old/java/com/zontreck/commands/homes/HomeCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/homes/HomeCommand.java rename to src/old/java/com/zontreck/commands/homes/HomeCommand.java diff --git a/src/main/java/com/zontreck/commands/homes/HomesCommand.java b/src/old/java/com/zontreck/commands/homes/HomesCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/homes/HomesCommand.java rename to src/old/java/com/zontreck/commands/homes/HomesCommand.java diff --git a/src/main/java/com/zontreck/commands/homes/SetHomeCommand.java b/src/old/java/com/zontreck/commands/homes/SetHomeCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/homes/SetHomeCommand.java rename to src/old/java/com/zontreck/commands/homes/SetHomeCommand.java diff --git a/src/main/java/com/zontreck/commands/items/ShareItemInChatCommand.java b/src/old/java/com/zontreck/commands/items/ShareItemInChatCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/items/ShareItemInChatCommand.java rename to src/old/java/com/zontreck/commands/items/ShareItemInChatCommand.java diff --git a/src/main/java/com/zontreck/commands/items/TIABDebug.java b/src/old/java/com/zontreck/commands/items/TIABDebug.java similarity index 100% rename from src/main/java/com/zontreck/commands/items/TIABDebug.java rename to src/old/java/com/zontreck/commands/items/TIABDebug.java diff --git a/src/main/java/com/zontreck/commands/spawn/SetSpawnCommand.java b/src/old/java/com/zontreck/commands/spawn/SetSpawnCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/spawn/SetSpawnCommand.java rename to src/old/java/com/zontreck/commands/spawn/SetSpawnCommand.java diff --git a/src/main/java/com/zontreck/commands/spawn/SpawnCommand.java b/src/old/java/com/zontreck/commands/spawn/SpawnCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/spawn/SpawnCommand.java rename to src/old/java/com/zontreck/commands/spawn/SpawnCommand.java diff --git a/src/main/java/com/zontreck/commands/teleport/TPACommand.java b/src/old/java/com/zontreck/commands/teleport/TPACommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/teleport/TPACommand.java rename to src/old/java/com/zontreck/commands/teleport/TPACommand.java diff --git a/src/main/java/com/zontreck/commands/teleport/TPAHereCommand.java b/src/old/java/com/zontreck/commands/teleport/TPAHereCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/teleport/TPAHereCommand.java rename to src/old/java/com/zontreck/commands/teleport/TPAHereCommand.java diff --git a/src/main/java/com/zontreck/commands/teleport/TPAcceptCommand.java b/src/old/java/com/zontreck/commands/teleport/TPAcceptCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/teleport/TPAcceptCommand.java rename to src/old/java/com/zontreck/commands/teleport/TPAcceptCommand.java diff --git a/src/main/java/com/zontreck/commands/teleport/TPCancelCommand.java b/src/old/java/com/zontreck/commands/teleport/TPCancelCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/teleport/TPCancelCommand.java rename to src/old/java/com/zontreck/commands/teleport/TPCancelCommand.java diff --git a/src/main/java/com/zontreck/commands/teleport/TPDenyCommand.java b/src/old/java/com/zontreck/commands/teleport/TPDenyCommand.java similarity index 100% rename from src/main/java/com/zontreck/commands/teleport/TPDenyCommand.java rename to src/old/java/com/zontreck/commands/teleport/TPDenyCommand.java diff --git a/src/main/java/com/zontreck/effects/FlightEffect.java b/src/old/java/com/zontreck/effects/FlightEffect.java similarity index 100% rename from src/main/java/com/zontreck/effects/FlightEffect.java rename to src/old/java/com/zontreck/effects/FlightEffect.java diff --git a/src/main/java/com/zontreck/effects/ModEffects.java b/src/old/java/com/zontreck/effects/ModEffects.java similarity index 100% rename from src/main/java/com/zontreck/effects/ModEffects.java rename to src/old/java/com/zontreck/effects/ModEffects.java diff --git a/src/main/java/com/zontreck/effects/ModPotions.java b/src/old/java/com/zontreck/effects/ModPotions.java similarity index 100% rename from src/main/java/com/zontreck/effects/ModPotions.java rename to src/old/java/com/zontreck/effects/ModPotions.java diff --git a/src/main/java/com/zontreck/enchantments/ConsumptionMending.java b/src/old/java/com/zontreck/enchantments/ConsumptionMending.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/ConsumptionMending.java rename to src/old/java/com/zontreck/enchantments/ConsumptionMending.java diff --git a/src/main/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java b/src/old/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java rename to src/old/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java diff --git a/src/main/java/com/zontreck/enchantments/EnchantmentEvents.java b/src/old/java/com/zontreck/enchantments/EnchantmentEvents.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/EnchantmentEvents.java rename to src/old/java/com/zontreck/enchantments/EnchantmentEvents.java diff --git a/src/main/java/com/zontreck/enchantments/FlightEnchantment.java b/src/old/java/com/zontreck/enchantments/FlightEnchantment.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/FlightEnchantment.java rename to src/old/java/com/zontreck/enchantments/FlightEnchantment.java diff --git a/src/main/java/com/zontreck/enchantments/MobEggEnchantment.java b/src/old/java/com/zontreck/enchantments/MobEggEnchantment.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/MobEggEnchantment.java rename to src/old/java/com/zontreck/enchantments/MobEggEnchantment.java diff --git a/src/main/java/com/zontreck/enchantments/ModDamageSources.java b/src/old/java/com/zontreck/enchantments/ModDamageSources.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/ModDamageSources.java rename to src/old/java/com/zontreck/enchantments/ModDamageSources.java diff --git a/src/main/java/com/zontreck/enchantments/ModEnchantments.java b/src/old/java/com/zontreck/enchantments/ModEnchantments.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/ModEnchantments.java rename to src/old/java/com/zontreck/enchantments/ModEnchantments.java diff --git a/src/main/java/com/zontreck/enchantments/NightVisionEnchantment.java b/src/old/java/com/zontreck/enchantments/NightVisionEnchantment.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/NightVisionEnchantment.java rename to src/old/java/com/zontreck/enchantments/NightVisionEnchantment.java diff --git a/src/main/java/com/zontreck/enchantments/VampiricMending.java b/src/old/java/com/zontreck/enchantments/VampiricMending.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/VampiricMending.java rename to src/old/java/com/zontreck/enchantments/VampiricMending.java diff --git a/src/main/java/com/zontreck/enchantments/WaterBreathingEnchantment.java b/src/old/java/com/zontreck/enchantments/WaterBreathingEnchantment.java similarity index 100% rename from src/main/java/com/zontreck/enchantments/WaterBreathingEnchantment.java rename to src/old/java/com/zontreck/enchantments/WaterBreathingEnchantment.java diff --git a/src/main/java/com/zontreck/entities/ModEntities.java b/src/old/java/com/zontreck/entities/ModEntities.java similarity index 100% rename from src/main/java/com/zontreck/entities/ModEntities.java rename to src/old/java/com/zontreck/entities/ModEntities.java diff --git a/src/main/java/com/zontreck/entities/TimeBoostEntity.java b/src/old/java/com/zontreck/entities/TimeBoostEntity.java similarity index 100% rename from src/main/java/com/zontreck/entities/TimeBoostEntity.java rename to src/old/java/com/zontreck/entities/TimeBoostEntity.java diff --git a/src/main/java/com/zontreck/events/CommandExecutionEvent.java b/src/old/java/com/zontreck/events/CommandExecutionEvent.java similarity index 100% rename from src/main/java/com/zontreck/events/CommandExecutionEvent.java rename to src/old/java/com/zontreck/events/CommandExecutionEvent.java diff --git a/src/main/java/com/zontreck/events/HomeCreatedEvent.java b/src/old/java/com/zontreck/events/HomeCreatedEvent.java similarity index 100% rename from src/main/java/com/zontreck/events/HomeCreatedEvent.java rename to src/old/java/com/zontreck/events/HomeCreatedEvent.java diff --git a/src/main/java/com/zontreck/events/HomeDeletedEvent.java b/src/old/java/com/zontreck/events/HomeDeletedEvent.java similarity index 100% rename from src/main/java/com/zontreck/events/HomeDeletedEvent.java rename to src/old/java/com/zontreck/events/HomeDeletedEvent.java diff --git a/src/main/java/com/zontreck/events/TeleportEvent.java b/src/old/java/com/zontreck/events/TeleportEvent.java similarity index 100% rename from src/main/java/com/zontreck/events/TeleportEvent.java rename to src/old/java/com/zontreck/events/TeleportEvent.java diff --git a/src/main/java/com/zontreck/homes/Home.java b/src/old/java/com/zontreck/homes/Home.java similarity index 100% rename from src/main/java/com/zontreck/homes/Home.java rename to src/old/java/com/zontreck/homes/Home.java diff --git a/src/main/java/com/zontreck/homes/Homes.java b/src/old/java/com/zontreck/homes/Homes.java similarity index 100% rename from src/main/java/com/zontreck/homes/Homes.java rename to src/old/java/com/zontreck/homes/Homes.java diff --git a/src/main/java/com/zontreck/items/CreativeModeTabs.java b/src/old/java/com/zontreck/items/CreativeModeTabs.java similarity index 100% rename from src/main/java/com/zontreck/items/CreativeModeTabs.java rename to src/old/java/com/zontreck/items/CreativeModeTabs.java diff --git a/src/main/java/com/zontreck/items/DeprecatedItem.java b/src/old/java/com/zontreck/items/DeprecatedItem.java similarity index 100% rename from src/main/java/com/zontreck/items/DeprecatedItem.java rename to src/old/java/com/zontreck/items/DeprecatedItem.java diff --git a/src/main/java/com/zontreck/items/DeprecatedModItems.java b/src/old/java/com/zontreck/items/DeprecatedModItems.java similarity index 100% rename from src/main/java/com/zontreck/items/DeprecatedModItems.java rename to src/old/java/com/zontreck/items/DeprecatedModItems.java diff --git a/src/main/java/com/zontreck/items/IhanCrystal.java b/src/old/java/com/zontreck/items/IhanCrystal.java similarity index 100% rename from src/main/java/com/zontreck/items/IhanCrystal.java rename to src/old/java/com/zontreck/items/IhanCrystal.java diff --git a/src/main/java/com/zontreck/items/MagmaPowder.java b/src/old/java/com/zontreck/items/MagmaPowder.java similarity index 100% rename from src/main/java/com/zontreck/items/MagmaPowder.java rename to src/old/java/com/zontreck/items/MagmaPowder.java diff --git a/src/main/java/com/zontreck/items/MobCaptureBallItem.java b/src/old/java/com/zontreck/items/MobCaptureBallItem.java similarity index 100% rename from src/main/java/com/zontreck/items/MobCaptureBallItem.java rename to src/old/java/com/zontreck/items/MobCaptureBallItem.java diff --git a/src/main/java/com/zontreck/items/ModItems.java b/src/old/java/com/zontreck/items/ModItems.java similarity index 100% rename from src/main/java/com/zontreck/items/ModItems.java rename to src/old/java/com/zontreck/items/ModItems.java diff --git a/src/main/java/com/zontreck/items/NBTKeys.java b/src/old/java/com/zontreck/items/NBTKeys.java similarity index 100% rename from src/main/java/com/zontreck/items/NBTKeys.java rename to src/old/java/com/zontreck/items/NBTKeys.java diff --git a/src/main/java/com/zontreck/items/PartialItem.java b/src/old/java/com/zontreck/items/PartialItem.java similarity index 100% rename from src/main/java/com/zontreck/items/PartialItem.java rename to src/old/java/com/zontreck/items/PartialItem.java diff --git a/src/main/java/com/zontreck/items/ThrownMobCaptureBall.java b/src/old/java/com/zontreck/items/ThrownMobCaptureBall.java similarity index 100% rename from src/main/java/com/zontreck/items/ThrownMobCaptureBall.java rename to src/old/java/com/zontreck/items/ThrownMobCaptureBall.java diff --git a/src/main/java/com/zontreck/items/abstracts/AbstractTIAB.java b/src/old/java/com/zontreck/items/abstracts/AbstractTIAB.java similarity index 100% rename from src/main/java/com/zontreck/items/abstracts/AbstractTIAB.java rename to src/old/java/com/zontreck/items/abstracts/AbstractTIAB.java diff --git a/src/main/java/com/zontreck/items/impl/TimeBottle.java b/src/old/java/com/zontreck/items/impl/TimeBottle.java similarity index 100% rename from src/main/java/com/zontreck/items/impl/TimeBottle.java rename to src/old/java/com/zontreck/items/impl/TimeBottle.java diff --git a/src/main/java/com/zontreck/items/tags/ItemStatTag.java b/src/old/java/com/zontreck/items/tags/ItemStatTag.java similarity index 100% rename from src/main/java/com/zontreck/items/tags/ItemStatTag.java rename to src/old/java/com/zontreck/items/tags/ItemStatTag.java diff --git a/src/main/java/com/zontreck/items/tags/ItemStatType.java b/src/old/java/com/zontreck/items/tags/ItemStatType.java similarity index 100% rename from src/main/java/com/zontreck/items/tags/ItemStatType.java rename to src/old/java/com/zontreck/items/tags/ItemStatType.java diff --git a/src/main/java/com/zontreck/items/tags/ItemStatistics.java b/src/old/java/com/zontreck/items/tags/ItemStatistics.java similarity index 100% rename from src/main/java/com/zontreck/items/tags/ItemStatistics.java rename to src/old/java/com/zontreck/items/tags/ItemStatistics.java diff --git a/src/main/java/com/zontreck/items/tags/ModIDs.java b/src/old/java/com/zontreck/items/tags/ModIDs.java similarity index 100% rename from src/main/java/com/zontreck/items/tags/ModIDs.java rename to src/old/java/com/zontreck/items/tags/ModIDs.java diff --git a/src/main/java/com/zontreck/libzontreck/LibZontreck.java b/src/old/java/com/zontreck/libzontreck/LibZontreck.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/LibZontreck.java rename to src/old/java/com/zontreck/libzontreck/LibZontreck.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java b/src/old/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java rename to src/old/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/BlockImitation.java b/src/old/java/com/zontreck/libzontreck/blocks/BlockImitation.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/BlockImitation.java rename to src/old/java/com/zontreck/libzontreck/blocks/BlockImitation.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java b/src/old/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java rename to src/old/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java b/src/old/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java rename to src/old/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java b/src/old/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java rename to src/old/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlock.java b/src/old/java/com/zontreck/libzontreck/blocks/RotatableBlock.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/RotatableBlock.java rename to src/old/java/com/zontreck/libzontreck/blocks/RotatableBlock.java diff --git a/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java b/src/old/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java rename to src/old/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java diff --git a/src/main/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java b/src/old/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java rename to src/old/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java diff --git a/src/main/java/com/zontreck/libzontreck/chat/ChatColor.java b/src/old/java/com/zontreck/libzontreck/chat/ChatColor.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chat/ChatColor.java rename to src/old/java/com/zontreck/libzontreck/chat/ChatColor.java diff --git a/src/main/java/com/zontreck/libzontreck/chat/ChatColorFactory.java b/src/old/java/com/zontreck/libzontreck/chat/ChatColorFactory.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chat/ChatColorFactory.java rename to src/old/java/com/zontreck/libzontreck/chat/ChatColorFactory.java diff --git a/src/main/java/com/zontreck/libzontreck/chat/Clickable.java b/src/old/java/com/zontreck/libzontreck/chat/Clickable.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chat/Clickable.java rename to src/old/java/com/zontreck/libzontreck/chat/Clickable.java diff --git a/src/main/java/com/zontreck/libzontreck/chat/HoverTip.java b/src/old/java/com/zontreck/libzontreck/chat/HoverTip.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chat/HoverTip.java rename to src/old/java/com/zontreck/libzontreck/chat/HoverTip.java diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUI.java b/src/old/java/com/zontreck/libzontreck/chestgui/ChestGUI.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chestgui/ChestGUI.java rename to src/old/java/com/zontreck/libzontreck/chestgui/ChestGUI.java diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java b/src/old/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java rename to src/old/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java b/src/old/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java rename to src/old/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java b/src/old/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java rename to src/old/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java b/src/old/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java rename to src/old/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java diff --git a/src/main/java/com/zontreck/libzontreck/commands/Commands.java b/src/old/java/com/zontreck/libzontreck/commands/Commands.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/commands/Commands.java rename to src/old/java/com/zontreck/libzontreck/commands/Commands.java diff --git a/src/main/java/com/zontreck/libzontreck/commands/CreditsCommand.java b/src/old/java/com/zontreck/libzontreck/commands/CreditsCommand.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/commands/CreditsCommand.java rename to src/old/java/com/zontreck/libzontreck/commands/CreditsCommand.java diff --git a/src/main/java/com/zontreck/libzontreck/commands/GetHead.java b/src/old/java/com/zontreck/libzontreck/commands/GetHead.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/commands/GetHead.java rename to src/old/java/com/zontreck/libzontreck/commands/GetHead.java diff --git a/src/main/java/com/zontreck/libzontreck/config/ServerConfig.java b/src/old/java/com/zontreck/libzontreck/config/ServerConfig.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/config/ServerConfig.java rename to src/old/java/com/zontreck/libzontreck/config/ServerConfig.java diff --git a/src/main/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java b/src/old/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java rename to src/old/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/Account.java b/src/old/java/com/zontreck/libzontreck/currency/Account.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/Account.java rename to src/old/java/com/zontreck/libzontreck/currency/Account.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/AccountReference.java b/src/old/java/com/zontreck/libzontreck/currency/AccountReference.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/AccountReference.java rename to src/old/java/com/zontreck/libzontreck/currency/AccountReference.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/Bank.java b/src/old/java/com/zontreck/libzontreck/currency/Bank.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/Bank.java rename to src/old/java/com/zontreck/libzontreck/currency/Bank.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/CurrencyHelper.java b/src/old/java/com/zontreck/libzontreck/currency/CurrencyHelper.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/CurrencyHelper.java rename to src/old/java/com/zontreck/libzontreck/currency/CurrencyHelper.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java b/src/old/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java rename to src/old/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/Transaction.java b/src/old/java/com/zontreck/libzontreck/currency/Transaction.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/Transaction.java rename to src/old/java/com/zontreck/libzontreck/currency/Transaction.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java b/src/old/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java rename to src/old/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java b/src/old/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java rename to src/old/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java b/src/old/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java rename to src/old/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java b/src/old/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java rename to src/old/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java b/src/old/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java rename to src/old/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java b/src/old/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java rename to src/old/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java b/src/old/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java rename to src/old/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java diff --git a/src/main/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java b/src/old/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java rename to src/old/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java diff --git a/src/main/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java b/src/old/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java rename to src/old/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/CloseGUIEvent.java b/src/old/java/com/zontreck/libzontreck/events/CloseGUIEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/CloseGUIEvent.java rename to src/old/java/com/zontreck/libzontreck/events/CloseGUIEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java b/src/old/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java rename to src/old/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java diff --git a/src/main/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java b/src/old/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java rename to src/old/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/OpenGUIEvent.java b/src/old/java/com/zontreck/libzontreck/events/OpenGUIEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/OpenGUIEvent.java rename to src/old/java/com/zontreck/libzontreck/events/OpenGUIEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java b/src/old/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java rename to src/old/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java b/src/old/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java rename to src/old/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java b/src/old/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java rename to src/old/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java b/src/old/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java rename to src/old/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java b/src/old/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java rename to src/old/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java b/src/old/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java rename to src/old/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java b/src/old/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java rename to src/old/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/events/TeleportEvent.java b/src/old/java/com/zontreck/libzontreck/events/TeleportEvent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/events/TeleportEvent.java rename to src/old/java/com/zontreck/libzontreck/events/TeleportEvent.java diff --git a/src/main/java/com/zontreck/libzontreck/items/InputItemStackHandler.java b/src/old/java/com/zontreck/libzontreck/items/InputItemStackHandler.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/items/InputItemStackHandler.java rename to src/old/java/com/zontreck/libzontreck/items/InputItemStackHandler.java diff --git a/src/main/java/com/zontreck/libzontreck/items/ModItems.java b/src/old/java/com/zontreck/libzontreck/items/ModItems.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/items/ModItems.java rename to src/old/java/com/zontreck/libzontreck/items/ModItems.java diff --git a/src/main/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java b/src/old/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java rename to src/old/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java diff --git a/src/main/java/com/zontreck/libzontreck/lore/ExtraLore.java b/src/old/java/com/zontreck/libzontreck/lore/ExtraLore.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/lore/ExtraLore.java rename to src/old/java/com/zontreck/libzontreck/lore/ExtraLore.java diff --git a/src/main/java/com/zontreck/libzontreck/lore/LoreContainer.java b/src/old/java/com/zontreck/libzontreck/lore/LoreContainer.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/lore/LoreContainer.java rename to src/old/java/com/zontreck/libzontreck/lore/LoreContainer.java diff --git a/src/main/java/com/zontreck/libzontreck/lore/LoreEntry.java b/src/old/java/com/zontreck/libzontreck/lore/LoreEntry.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/lore/LoreEntry.java rename to src/old/java/com/zontreck/libzontreck/lore/LoreEntry.java diff --git a/src/main/java/com/zontreck/libzontreck/lore/LoreType.java b/src/old/java/com/zontreck/libzontreck/lore/LoreType.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/lore/LoreType.java rename to src/old/java/com/zontreck/libzontreck/lore/LoreType.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java b/src/old/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java rename to src/old/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java b/src/old/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java rename to src/old/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java b/src/old/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java rename to src/old/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestore.java b/src/old/java/com/zontreck/libzontreck/memory/world/BlockRestore.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/BlockRestore.java rename to src/old/java/com/zontreck/libzontreck/memory/world/BlockRestore.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java b/src/old/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java rename to src/old/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java b/src/old/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java rename to src/old/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java b/src/old/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java rename to src/old/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java b/src/old/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java rename to src/old/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java b/src/old/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java rename to src/old/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java b/src/old/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java rename to src/old/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java b/src/old/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java rename to src/old/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java b/src/old/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java rename to src/old/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java b/src/old/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java rename to src/old/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SavedBlock.java b/src/old/java/com/zontreck/libzontreck/memory/world/SavedBlock.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/SavedBlock.java rename to src/old/java/com/zontreck/libzontreck/memory/world/SavedBlock.java diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java b/src/old/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java rename to src/old/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java diff --git a/src/main/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java b/src/old/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java rename to src/old/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java diff --git a/src/main/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java b/src/old/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java rename to src/old/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/ModMessages.java b/src/old/java/com/zontreck/libzontreck/networking/ModMessages.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/ModMessages.java rename to src/old/java/com/zontreck/libzontreck/networking/ModMessages.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/NetworkEvents.java b/src/old/java/com/zontreck/libzontreck/networking/NetworkEvents.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/NetworkEvents.java rename to src/old/java/com/zontreck/libzontreck/networking/NetworkEvents.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/chestGUI.md b/src/old/java/com/zontreck/libzontreck/networking/chestGUI.md similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/chestGUI.md rename to src/old/java/com/zontreck/libzontreck/networking/chestGUI.md diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/IPacket.java b/src/old/java/com/zontreck/libzontreck/networking/packets/IPacket.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/packets/IPacket.java rename to src/old/java/com/zontreck/libzontreck/networking/packets/IPacket.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java b/src/old/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java rename to src/old/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java b/src/old/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java rename to src/old/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java b/src/old/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java rename to src/old/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java b/src/old/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java rename to src/old/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java b/src/old/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java rename to src/old/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java diff --git a/src/main/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java b/src/old/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java rename to src/old/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java diff --git a/src/main/java/com/zontreck/libzontreck/profiles/Profile.java b/src/old/java/com/zontreck/libzontreck/profiles/Profile.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/profiles/Profile.java rename to src/old/java/com/zontreck/libzontreck/profiles/Profile.java diff --git a/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java b/src/old/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java rename to src/old/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java diff --git a/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java b/src/old/java/com/zontreck/libzontreck/types/ModMenuTypes.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java rename to src/old/java/com/zontreck/libzontreck/types/ModMenuTypes.java diff --git a/src/main/java/com/zontreck/libzontreck/util/BinUtil.java b/src/old/java/com/zontreck/libzontreck/util/BinUtil.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/BinUtil.java rename to src/old/java/com/zontreck/libzontreck/util/BinUtil.java diff --git a/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java b/src/old/java/com/zontreck/libzontreck/util/BlocksUtil.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java rename to src/old/java/com/zontreck/libzontreck/util/BlocksUtil.java diff --git a/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java b/src/old/java/com/zontreck/libzontreck/util/ChatHelpers.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java rename to src/old/java/com/zontreck/libzontreck/util/ChatHelpers.java diff --git a/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java b/src/old/java/com/zontreck/libzontreck/util/HttpHelper.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/HttpHelper.java rename to src/old/java/com/zontreck/libzontreck/util/HttpHelper.java diff --git a/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java b/src/old/java/com/zontreck/libzontreck/util/ItemUtils.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/ItemUtils.java rename to src/old/java/com/zontreck/libzontreck/util/ItemUtils.java diff --git a/src/main/java/com/zontreck/libzontreck/util/Maps.java b/src/old/java/com/zontreck/libzontreck/util/Maps.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/Maps.java rename to src/old/java/com/zontreck/libzontreck/util/Maps.java diff --git a/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java b/src/old/java/com/zontreck/libzontreck/util/PositionUtil.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/PositionUtil.java rename to src/old/java/com/zontreck/libzontreck/util/PositionUtil.java diff --git a/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java b/src/old/java/com/zontreck/libzontreck/util/ServerUtilities.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java rename to src/old/java/com/zontreck/libzontreck/util/ServerUtilities.java diff --git a/src/main/java/com/zontreck/libzontreck/util/TagUtils.java b/src/old/java/com/zontreck/libzontreck/util/TagUtils.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/TagUtils.java rename to src/old/java/com/zontreck/libzontreck/util/TagUtils.java diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java b/src/old/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java rename to src/old/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java b/src/old/java/com/zontreck/libzontreck/util/heads/HeadCache.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java rename to src/old/java/com/zontreck/libzontreck/util/heads/HeadCache.java diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java b/src/old/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java rename to src/old/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java b/src/old/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java rename to src/old/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java b/src/old/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java rename to src/old/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java b/src/old/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java similarity index 100% rename from src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java rename to src/old/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java diff --git a/src/main/java/com/zontreck/mixin/BlockGetterMixin.java b/src/old/java/com/zontreck/mixin/BlockGetterMixin.java similarity index 100% rename from src/main/java/com/zontreck/mixin/BlockGetterMixin.java rename to src/old/java/com/zontreck/mixin/BlockGetterMixin.java diff --git a/src/main/java/com/zontreck/mixin/ColorsMixin.java b/src/old/java/com/zontreck/mixin/ColorsMixin.java similarity index 100% rename from src/main/java/com/zontreck/mixin/ColorsMixin.java rename to src/old/java/com/zontreck/mixin/ColorsMixin.java diff --git a/src/main/java/com/zontreck/mixin/MaterialColorMixin.java b/src/old/java/com/zontreck/mixin/MaterialColorMixin.java similarity index 100% rename from src/main/java/com/zontreck/mixin/MaterialColorMixin.java rename to src/old/java/com/zontreck/mixin/MaterialColorMixin.java diff --git a/src/main/java/com/zontreck/util/ExperienceUtils.java b/src/old/java/com/zontreck/util/ExperienceUtils.java similarity index 100% rename from src/main/java/com/zontreck/util/ExperienceUtils.java rename to src/old/java/com/zontreck/util/ExperienceUtils.java diff --git a/src/main/java/com/zontreck/util/ModDimensions.java b/src/old/java/com/zontreck/util/ModDimensions.java similarity index 100% rename from src/main/java/com/zontreck/util/ModDimensions.java rename to src/old/java/com/zontreck/util/ModDimensions.java diff --git a/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java b/src/old/java/com/zontreck/util/PerPlayerDataRegistry.java similarity index 100% rename from src/main/java/com/zontreck/util/PerPlayerDataRegistry.java rename to src/old/java/com/zontreck/util/PerPlayerDataRegistry.java diff --git a/src/main/java/com/zontreck/util/SoundUtilities.java b/src/old/java/com/zontreck/util/SoundUtilities.java similarity index 100% rename from src/main/java/com/zontreck/util/SoundUtilities.java rename to src/old/java/com/zontreck/util/SoundUtilities.java diff --git a/src/main/java/com/zontreck/util/StylesUtil.java b/src/old/java/com/zontreck/util/StylesUtil.java similarity index 100% rename from src/main/java/com/zontreck/util/StylesUtil.java rename to src/old/java/com/zontreck/util/StylesUtil.java diff --git a/src/main/java/com/zontreck/util/TeleportActioner.java b/src/old/java/com/zontreck/util/TeleportActioner.java similarity index 100% rename from src/main/java/com/zontreck/util/TeleportActioner.java rename to src/old/java/com/zontreck/util/TeleportActioner.java diff --git a/src/main/java/com/zontreck/util/TeleportContainer.java b/src/old/java/com/zontreck/util/TeleportContainer.java similarity index 100% rename from src/main/java/com/zontreck/util/TeleportContainer.java rename to src/old/java/com/zontreck/util/TeleportContainer.java diff --git a/src/main/java/com/zontreck/util/TeleportDestination.java b/src/old/java/com/zontreck/util/TeleportDestination.java similarity index 100% rename from src/main/java/com/zontreck/util/TeleportDestination.java rename to src/old/java/com/zontreck/util/TeleportDestination.java diff --git a/src/main/java/com/zontreck/util/TeleportRegistry.java b/src/old/java/com/zontreck/util/TeleportRegistry.java similarity index 100% rename from src/main/java/com/zontreck/util/TeleportRegistry.java rename to src/old/java/com/zontreck/util/TeleportRegistry.java diff --git a/src/main/java/com/zontreck/util/TeleportRunnable.java b/src/old/java/com/zontreck/util/TeleportRunnable.java similarity index 100% rename from src/main/java/com/zontreck/util/TeleportRunnable.java rename to src/old/java/com/zontreck/util/TeleportRunnable.java diff --git a/src/old/resources/META-INF/neoforge.mods.toml b/src/old/resources/META-INF/neoforge.mods.toml new file mode 100644 index 0000000..44bbd22 --- /dev/null +++ b/src/old/resources/META-INF/neoforge.mods.toml @@ -0,0 +1,41 @@ +modLoader = "javafml" +loaderVersion = "[4,)" +#issueTrackerURL = "" +license = "GPLv3" + +[[mods]] +modId = "ariasessentials" +version = "${version}" +displayName = "Aria's Essentials" +authors = "Me!" +description = ''' +A mod including features and functions to enhance the game. +''' +#logoFile = "" + +[[mods]] +modId = "libzontreck" +version = "${version}" +displayName = "Aria's Library" +authors = "Me!" +description = ''' +A mod including features and functions to enhance the game. +''' +#logoFile = "" + +[[dependencies.ariasessentials]] +modId = "neoforge" +type = "required" +versionRange = "[21.1,)" +ordering = "NONE" +side = "BOTH" + +[[dependencies.ariasessentials]] +modId = "minecraft" +type = "required" +versionRange = "[1.21.1,1.22)" +ordering = "NONE" +side = "BOTH" + +[[mixins]] +config = "ariasessentials.mixins.json" \ No newline at end of file diff --git a/src/old/resources/ariasessentials.mixins.json b/src/old/resources/ariasessentials.mixins.json new file mode 100644 index 0000000..f24b53d --- /dev/null +++ b/src/old/resources/ariasessentials.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "com.zontreck.mixin", + "compatibilityLevel": "JAVA_21", + "minVersion": "0.8", + "client": [], + "mixins": [], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/src/old/resources/ariasessentials.png b/src/old/resources/ariasessentials.png new file mode 100644 index 0000000..3ecc99c Binary files /dev/null and b/src/old/resources/ariasessentials.png differ diff --git a/src/old/resources/assets/ariasessentials/blockstates/blood_red.json b/src/old/resources/assets/ariasessentials/blockstates/blood_red.json new file mode 100644 index 0000000..60f3882 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/blood_red.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blood_red" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile.json new file mode 100644 index 0000000..640935c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blue_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_light.json new file mode 100644 index 0000000..22f1f40 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blue_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json new file mode 100644 index 0000000..00562c3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/blue_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/blue_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/blue_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json new file mode 100644 index 0000000..35b901f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json new file mode 100644 index 0000000..eb89578 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clear_glass_block.json b/src/old/resources/assets/ariasessentials/blockstates/clear_glass_block.json new file mode 100644 index 0000000..c2c5c03 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clear_glass_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deprecated" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_block.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_block.json new file mode 100644 index 0000000..abf1a37 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/clinker_brick_block_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json new file mode 100644 index 0000000..bab23ad --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json new file mode 100644 index 0000000..2602152 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/clinker_brick_stained_block_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json new file mode 100644 index 0000000..d10f82d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..219383c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json new file mode 100644 index 0000000..13e551f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json new file mode 100644 index 0000000..a4976c1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cobalt_block.json b/src/old/resources/assets/ariasessentials/blockstates/cobalt_block.json new file mode 100644 index 0000000..5425928 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cobalt_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cobalt_block" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cobalt_ore.json b/src/old/resources/assets/ariasessentials/blockstates/cobalt_ore.json new file mode 100644 index 0000000..15e902e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cobalt_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cobalt_ore" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json b/src/old/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json new file mode 100644 index 0000000..dcd27fd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/compressed_obsidian_block" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/compression_chamber.json b/src/old/resources/assets/ariasessentials/blockstates/compression_chamber.json new file mode 100644 index 0000000..28d55e9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/compression_chamber.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=north": { + "model": "ariasessentials:block/compression_chamber" + }, + "facing=east": { + "model": "ariasessentials:block/compression_chamber", + "y": 90 + }, + "facing=south": { + "model": "ariasessentials:block/compression_chamber", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/compression_chamber", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan.json b/src/old/resources/assets/ariasessentials/blockstates/cyan.json new file mode 100644 index 0000000..1140857 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile.json new file mode 100644 index 0000000..8e6448d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_light.json new file mode 100644 index 0000000..f8a7f5f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_slab.json new file mode 100644 index 0000000..f1cd9df --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/cyan_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/cyan_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/cyan_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_stairs.json new file mode 100644 index 0000000..8f2c027 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_wall.json new file mode 100644 index 0000000..3e68930 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/cyan_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_stairs.json new file mode 100644 index 0000000..92a3b8d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_tile.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_tile.json new file mode 100644 index 0000000..9392d78 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_tile" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_tile_br.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_tile_br.json new file mode 100644 index 0000000..4ff391d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_tile_br.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/cyan_tile_br" + }, + "facing=south": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 270 + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json new file mode 100644 index 0000000..18664ad --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_tile_to_wall" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json new file mode 100644 index 0000000..9db9859 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_wall_variant_1" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json b/src/old/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json new file mode 100644 index 0000000..c19d42c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_wall_variant_2" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile.json new file mode 100644 index 0000000..a275c44 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_light.json new file mode 100644 index 0000000..364998b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json new file mode 100644 index 0000000..3b81bd2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dark_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dark_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dark_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json new file mode 100644 index 0000000..b1d4e4d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_red_bed.json b/src/old/resources/assets/ariasessentials/blockstates/dark_red_bed.json new file mode 100644 index 0000000..6577c90 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_red_carpet.json b/src/old/resources/assets/ariasessentials/blockstates/dark_red_carpet.json new file mode 100644 index 0000000..7b947a7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_red_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_carpet" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json b/src/old/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json new file mode 100644 index 0000000..076cb31 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_shulker_box" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dark_red_wool.json b/src/old/resources/assets/ariasessentials/blockstates/dark_red_wool.json new file mode 100644 index 0000000..412496d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dark_red_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_wool" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json b/src/old/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..aa984f4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deepslate_eternium_ore_block" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json b/src/old/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..e09d2fd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deprecated" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json new file mode 100644 index 0000000..777f905 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_blue_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_light.json new file mode 100644 index 0000000..4f393e7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_blue_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..6c39f66 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_blue_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_blue_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_blue_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..ed6b1d2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..4412e55 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile.json new file mode 100644 index 0000000..5f2a22c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_cyan_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_light.json new file mode 100644 index 0000000..0610c41 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_slab.json new file mode 100644 index 0000000..8601379 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_cyan_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_stairs.json new file mode 100644 index 0000000..198b001 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_wall.json new file mode 100644 index 0000000..d2cce62 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_cyan_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_cyan_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json new file mode 100644 index 0000000..0a4862e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_green_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_light.json new file mode 100644 index 0000000..81f3b33 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_green_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..475582f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_green_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_green_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_green_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..7afe9fc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..23182e9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json new file mode 100644 index 0000000..04a7908 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_light.json new file mode 100644 index 0000000..71277d0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json new file mode 100644 index 0000000..2f1b5b6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..9c344d4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json new file mode 100644 index 0000000..e769d48 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json new file mode 100644 index 0000000..463ad22 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_red_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_light.json new file mode 100644 index 0000000..1baee3d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_red_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..7a10e52 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_red_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_red_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_red_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..1560aaf --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..1dd59bd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/eternium_block.json b/src/old/resources/assets/ariasessentials/blockstates/eternium_block.json new file mode 100644 index 0000000..3cf3d7a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/eternium_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/eternium_block" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/eternium_ore_block.json b/src/old/resources/assets/ariasessentials/blockstates/eternium_ore_block.json new file mode 100644 index 0000000..200aca7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/eternium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/eternium_ore_block" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/filthy_blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/filthy_blue_pool_tile_light.json new file mode 100644 index 0000000..cc9a18a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/filthy_blue_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_blue_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/filthy_cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/filthy_cyan_pool_tile_light.json new file mode 100644 index 0000000..ea4fe52 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/filthy_cyan_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_cyan_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/filthy_green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/filthy_green_pool_tile_light.json new file mode 100644 index 0000000..b2939d8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/filthy_green_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_green_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/filthy_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/filthy_pool_tile_light.json new file mode 100644 index 0000000..6c92831 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/filthy_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/filthy_red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/filthy_red_pool_tile_light.json new file mode 100644 index 0000000..4891645 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/filthy_red_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_red_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile.json new file mode 100644 index 0000000..f20c044 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/green_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_light.json new file mode 100644 index 0000000..82c368e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/green_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json new file mode 100644 index 0000000..a4d9c0f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/green_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/green_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/green_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json new file mode 100644 index 0000000..a9fbe82 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json new file mode 100644 index 0000000..78f64c4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/mini_sun.json b/src/old/resources/assets/ariasessentials/blockstates/mini_sun.json new file mode 100644 index 0000000..0632f95 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/mini_sun.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/mini_sun" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json b/src/old/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..cfb17f7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/nether_vault_steel_ore_block" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json new file mode 100644 index 0000000..42563b0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json new file mode 100644 index 0000000..5419f88 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json @@ -0,0 +1,18 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/old_industrial_wood_planks_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model3" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json new file mode 100644 index 0000000..bff1e69 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json @@ -0,0 +1,88 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json new file mode 100644 index 0000000..d689f7f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json @@ -0,0 +1,1804 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/panzerglass_block.json b/src/old/resources/assets/ariasessentials/blockstates/panzerglass_block.json new file mode 100644 index 0000000..428aee3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/panzerglass_block.json @@ -0,0 +1,18 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/panzerglass_block_model0" + }, + { + "model": "ariasessentials:block/panzerglass_block_model1" + }, + { + "model": "ariasessentials:block/panzerglass_block_model2" + }, + { + "model": "ariasessentials:block/panzerglass_block_model3" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/panzerglass_slab.json b/src/old/resources/assets/ariasessentials/blockstates/panzerglass_slab.json new file mode 100644 index 0000000..35035f2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/panzerglass_slab.json @@ -0,0 +1,88 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/pool_tile.json new file mode 100644 index 0000000..7c84b59 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_light.json new file mode 100644 index 0000000..418cd84 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_slab.json new file mode 100644 index 0000000..b06dc83 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json new file mode 100644 index 0000000..23fd6c1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_wall.json new file mode 100644 index 0000000..6fd26fe --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json b/src/old/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json new file mode 100644 index 0000000..93f5f3d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/raw_cobalt_ore" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete.json new file mode 100644 index 0000000..7012fe4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/rebar_concrete_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json new file mode 100644 index 0000000..7468bbe --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json new file mode 100644 index 0000000..bb03138 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json new file mode 100644 index 0000000..5c1db84 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..d4ce6d0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..c0e5399 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json new file mode 100644 index 0000000..87da187 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile.json b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile.json new file mode 100644 index 0000000..a555bcd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_light.json new file mode 100644 index 0000000..9be99bb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_pool_tile_light" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json new file mode 100644 index 0000000..cf0eac2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/red_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/red_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/red_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json new file mode 100644 index 0000000..90760ed --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json new file mode 100644 index 0000000..15f8a13 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/red_stairs.json new file mode 100644 index 0000000..2078bf3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_tile.json b/src/old/resources/assets/ariasessentials/blockstates/red_tile.json new file mode 100644 index 0000000..128ecac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_tile" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_tile_br.json b/src/old/resources/assets/ariasessentials/blockstates/red_tile_br.json new file mode 100644 index 0000000..5984fc4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_tile_br.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/red_tile_br", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/red_tile_br" + }, + "facing=south": { + "model": "ariasessentials:block/red_tile_br", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/red_tile_br", + "y": 270 + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json b/src/old/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json new file mode 100644 index 0000000..d9c4f1b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_tile_to_wall" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json b/src/old/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json new file mode 100644 index 0000000..deabbc2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_wall_variant_1" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json b/src/old/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json new file mode 100644 index 0000000..08ccfe9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_wall_variant_2" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/slag_brick_block.json b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_block.json new file mode 100644 index 0000000..0efb300 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/slag_brick_block_model0" + }, + { + "model": "ariasessentials:block/slag_brick_block_model1" + }, + { + "model": "ariasessentials:block/slag_brick_block_model2" + }, + { + "model": "ariasessentials:block/slag_brick_block_model3" + }, + { + "model": "ariasessentials:block/slag_brick_block_model4" + }, + { + "model": "ariasessentials:block/slag_brick_block_model5" + }, + { + "model": "ariasessentials:block/slag_brick_block_model6" + }, + { + "model": "ariasessentials:block/slag_brick_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/slag_brick_slab.json b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_slab.json new file mode 100644 index 0000000..3418db0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json new file mode 100644 index 0000000..a88b91e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/slag_brick_wall.json b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_wall.json new file mode 100644 index 0000000..d9428b0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/slag_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/blockstates/void.json b/src/old/resources/assets/ariasessentials/blockstates/void.json new file mode 100644 index 0000000..171175b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/void.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/void" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/blockstates/whiteout.json b/src/old/resources/assets/ariasessentials/blockstates/whiteout.json new file mode 100644 index 0000000..4e4afee --- /dev/null +++ b/src/old/resources/assets/ariasessentials/blockstates/whiteout.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/whiteout" + } + } +} diff --git a/src/old/resources/assets/ariasessentials/lang/en_us.json b/src/old/resources/assets/ariasessentials/lang/en_us.json new file mode 100644 index 0000000..e269f09 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/lang/en_us.json @@ -0,0 +1,183 @@ +{ + "item.ariasessentials.tiab": "Time in a Bottle", + + "key.ariasessentials.open_vault": "Opens Vault 0", + "key.category.ariasessentials": "Aria's Essentials", + + "itemGroup.ariasessentials": "Aria's Essentials", + + "item.minecraft.splash_potion.effect.flight": "Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight": "Lingering Potion of Flight", + "item.minecraft.potion.effect.flight": "Potion of Flight", + + "item.minecraft.splash_potion.effect.flight_awkward": "Awkward Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight_awkward": "Awkward Lingering Potion of Flight", + "item.minecraft.potion.effect.flight_awkward": "Awkward Potion of Flight", + + "item.minecraft.splash_potion.effect.flight_basic": "Thick Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight_basic": "Thick Lingering Potion of Flight", + "item.minecraft.potion.effect.flight_basic": "Thick Potion of Flight", + + + "item.ariasessentials.eternium_ore": "Raw Eternium Ore", + "item.ariasessentials.ihan_crystal": "Ihan Crystal", + "item.ariasessentials.ihan_crystal.levels": "Stored XP: ", + "item.ariasessentials.ihan_crystal.empty": "* Crystal Is Empty *", + "item.ariasessentials.ihan_crystal.need_repair": "Ihan Crystal must now be repaired", + "item.ariasessentials.ihan_crystal.durability": "Durability: ", + "item.ariasessentials.eternium_dust": "Eternium Dust", + "item.ariasessentials.eternium_ingot": "Eternium Ingot", + "item.ariasessentials.eternium_rod": "Eternium Rod", + "item.ariasessentials.singularity": "Unstable Singularity", + "item.ariasessentials.scrubber_frame_piece": "Scrubber Frame Component", + "item.ariasessentials.scrubber_frame": "Scrubber Frame", + "item.ariasessentials.mob_capture_ball": "Mob Capture Ball", + "item.ariasessentials.empty_spawn_egg": "Empty Spawn Egg", + "item.ariasessentials.compressed_obsidian_sheet": "Sheet of Compressed Obsidian", + "item.ariasessentials.layered_compressed_obsidian_sheet": "Layered Sheet of Compressed Obsidian", + "item.ariasessentials.encased_singularity": "Encased Singularity", + "item.ariasessentials.encased_singularity.desc": "A singularity encased in stone, ready to be further compressed into bedrock", + "item.ariasessentials.deprecated": "Deprecated Item", + "item.ariasessentials.white_brick": "White Brick", + "item.ariasessentials.blue_brick": "Blue Brick", + "item.ariasessentials.light_blue_brick": "Light Blue Brick", + "item.ariasessentials.cyan_brick": "Cyan Brick", + "item.ariasessentials.dark_red_dye": "Dark Red Dye", + "item.ariasessentials.red_brick": "Red Brick", + "item.ariasessentials.dark_red_brick": "Dark Red Brick", + "item.ariasessentials.lime_brick": "Lime Brick", + "item.ariasessentials.green_brick": "Green Brick", + "item.ariasessentials.partial_item": "Partial Item", + "item.ariasessentials.magma_powder": "Magma Powder", + + + + "block.ariasessentials.eternium_ore_block": "Eternium Ore", + "block.ariasessentials.deepslate_eternium_ore_block": "Deepslate Eternium Ore", + "block.ariasessentials.clear_glass_block": "Clear Glass Block", + "block.ariasessentials.eternium_block": "Block of Eternium", + "block.ariasessentials.void": "Void", + "block.ariasessentials.whiteout": "White", + "block.ariasessentials.blood_red": "Blood Red", + "block.ariasessentials.red_tile": "Red Tile", + "block.ariasessentials.red_tile_br": "Blood Red Tile Transition", + "block.ariasessentials.red_stairs": "Blood Red Stairs", + "block.ariasessentials.red_tile_to_wall": "Red Floor To Wall Transition", + "block.ariasessentials.red_wall_variant_1": "Red Wall", + "block.ariasessentials.red_wall_variant_2": "Red Wall", + "block.ariasessentials.cyan": "Cyan", + "block.ariasessentials.cyan_tile": "Cyan Tile", + "block.ariasessentials.cyan_tile_br": "Cyan Tile Transition", + "block.ariasessentials.cyan_stairs": "Cyan Stairs", + "block.ariasessentials.cyan_tile_to_wall": "Cyan Floor To Wall Transition", + "block.ariasessentials.cyan_wall_variant_1": "Cyan Wall", + "block.ariasessentials.cyan_wall_variant_2": "Cyan Wall", + "block.ariasessentials.pool_tile_light": "Pool Light", + "block.ariasessentials.dirty_pool_tile_light": "Dirty Pool Light", + "block.ariasessentials.filthy_pool_tile_light": "Filthy Pool Light", + "block.ariasessentials.dark_pool_tile_light": "Dark Pool Light", + "block.ariasessentials.blue_pool_tile_light": "Blue Pool Light", + "block.ariasessentials.dirty_red_pool_tile_light": "Dirty Red Pool Light", + "block.ariasessentials.filthy_red_pool_tile_light": "Filthy Red Pool Light", + "block.ariasessentials.filthy_blue_pool_tile_light": "Filthy Blue Pool Light", + "block.ariasessentials.pool_tile": "Pool Tiles", + "block.ariasessentials.pool_tile_stairs": "Pool Tile Stairs", + "block.ariasessentials.pool_tile_slab": "Pool Tile Slab", + "block.ariasessentials.pool_tile_wall": "Pool Tile Wall", + "block.ariasessentials.dirty_pool_tile": "Dirty Pool Tiles", + "block.ariasessentials.dirty_pool_tile_stairs": "Dirty Pool Tile Stairs", + "block.ariasessentials.dirty_pool_tile_slab": "Dirty Pool Tile Slab", + "block.ariasessentials.dirty_pool_tile_wall": "Dirty Pool Tile Wall", + "block.ariasessentials.dark_pool_tile": "Dark Pool Tiles", + "block.ariasessentials.dark_pool_tile_stairs": "Dark Pool Tile Stairs", + "block.ariasessentials.dark_pool_tile_slab": "Dark Pool Tile Slab", + "block.ariasessentials.blue_pool_tile": "Blue Pool Tiles", + "block.ariasessentials.blue_pool_tile_stairs": "Blue Pool Tile Stairs", + "block.ariasessentials.blue_pool_tile_slab": "Blue Pool Tile Slab", + "block.ariasessentials.blue_pool_tile_wall": "Blue Pool Tile Wall", + "block.ariasessentials.dirty_blue_pool_tile": "Dirty Blue Pool Tiles", + "block.ariasessentials.dirty_blue_pool_tile_stairs": "Dirty Blue Pool Tile Stairs", + "block.ariasessentials.dirty_blue_pool_tile_slab": "Dirty Blue Pool Tile Slab", + "block.ariasessentials.dirty_blue_pool_tile_wall": "Dirty Blue Pool Tile Wall", + "block.ariasessentials.dirty_blue_pool_tile_light": "Dirty Blue Pool Light", + "block.ariasessentials.red_pool_tile": "Red Pool Tiles", + "block.ariasessentials.red_pool_tile_stairs": "Red Pool Tile Stairs", + "block.ariasessentials.red_pool_tile_slab": "Red Pool Tile Slab", + "block.ariasessentials.red_pool_tile_wall": "Red Pool Tile Wall", + "block.ariasessentials.red_pool_tile_light": "Red Pool Light", + "block.ariasessentials.dirty_red_pool_tile": "Dirty Red Pool Tile", + "block.ariasessentials.dirty_red_pool_tile_stairs": "Dirty Red Pool Tile Stairs", + "block.ariasessentials.dirty_red_pool_tile_slab": "Dirty Red Pool Tile Slab", + "block.ariasessentials.dirty_red_pool_tile_wall": "Dirty Red Pool Tile Wall", + "block.ariasessentials.dark_red_wool": "Dark Red Wool", + "block.ariasessentials.dark_red_carpet": "Dark Red Carpet", + "block.ariasessentials.green_pool_tile": "Green Pool Tiles", + "block.ariasessentials.green_pool_tile_stairs": "Green Pool Tile Stairs", + "block.ariasessentials.green_pool_tile_slab": "Green Pool Tile Slab", + "block.ariasessentials.green_pool_tile_wall": "Green Pool Tile Wall", + "block.ariasessentials.green_pool_tile_light": "Green Pool Light", + "block.ariasessentials.dirty_green_pool_tile": "Dirty Green Pool Tile", + "block.ariasessentials.dirty_green_pool_tile_stairs": "Dirty Green Pool Tile Stairs", + "block.ariasessentials.dirty_green_pool_tile_slab": "Dirty Green Pool Tile Slab", + "block.ariasessentials.dirty_green_pool_tile_wall": "Dirty Green Pool Tile Wall", + "block.ariasessentials.dirty_green_pool_tile_light": "Dirty Green Pool Light", + "block.ariasessentials.filthy_green_pool_tile_light": "Filthy Green Pool Light", + + + "block.ariasessentials.cyan_pool_tile": "Cyan Pool Tiles", + "block.ariasessentials.cyan_pool_tile_stairs": "Cyan Pool Tile Stairs", + "block.ariasessentials.cyan_pool_tile_slab": "Cyan Pool Tile Slab", + "block.ariasessentials.cyan_pool_tile_wall": "Cyan Pool Tile Wall", + "block.ariasessentials.cyan_pool_tile_light": "Cyan Pool Light", + "block.ariasessentials.dirty_cyan_pool_tile": "Dirty Cyan Pool Tile", + "block.ariasessentials.dirty_cyan_pool_tile_stairs": "Dirty Cyan Pool Tile Stairs", + "block.ariasessentials.dirty_cyan_pool_tile_slab": "Dirty Cyan Pool Tile Slab", + "block.ariasessentials.dirty_cyan_pool_tile_wall": "Dirty Cyan Pool Tile Wall", + "block.ariasessentials.dirty_cyan_pool_tile_light": "Dirty Cyan Pool Light", + "block.ariasessentials.filthy_cyan_pool_tile_light": "Filthy Cyan Pool Light", + + + + + + "block.ariasessentials.rebar_concrete": "Rebar Concrete", + "block.ariasessentials.rebar_concrete_slab": "Rebar Concrete Slab", + "block.ariasessentials.rebar_concrete_stairs": "Rebar Concrete Stairs", + "block.ariasessentials.rebar_concrete_wall": "Rebar Concrete Wall", + "block.ariasessentials.panzerglass_block": "Panzerglass", + "block.ariasessentials.mini_sun": "Miniature Sun", + + + + "enchantment.ariasessentials.mob_egging": "Mob Egging", + "enchantment.ariasessentials.player_flight": "Flight", + "enchantment.ariasessentials.mob_egging.desc": "Chance of mob spawn eggs to drop", + "enchantment.ariasessentials.flight.desc": "Allows you to fly!", + "enchantment.ariasessentials.borrowed_protection": "Borrowed Protection", + "enchantment.ariasessentials.borrowed_protection.desc": "Borrows protection from any nearby player.", + "enchantment.ariasessentials.night_vision": "Night Vision", + "enchantment.ariasessentials.night_vision.desc": "See in the dark!", + "enchantment.ariasessentials.water_breathing": "Water Breathing", + "enchantment.ariasessentials.water_breathing.desc": "Become one with the fishy", + "enchantment.ariasessentials.consumption_mending": "Scrap Mending", + "enchantment.ariasessentials.consumption_mending.desc": "Consumes scrap items to repair durability. May consume curses.", + "enchantment.ariasessentials.extra_strength": "WIP Damage Increaser", + "enchantment.ariasessentials.extra_strength.desc": "Exponentially increases the damage dealt to enemies to even the odds", + "enchantment.ariasessentials.vampiric_mend": "Vampiric Mending", + "enchantment.ariasessentials.vampiric_mend.desc": "Exchanges half a heart of HP in exchange for 50 durability every 5 seconds. Caution: May kill you...repeatedly", + + "effect.ariasessentials.flight": "Flight", + + + "dev.zontreck.ariasessentials.msgs.only_player": "§cOnly players are allowed to execute this command", + + "dev.zontreck.ariasessentials.msgs.command_cooling_down": "This command is currently on cooldown. You must wait for ", + "dev.zontreck.ariasessentials.msgs.command_cooling_down_seconds": "seconds.", + + "dev.zontreck.ariasessentials.msgs.warps.set.success": "Warp successfully created", + "dev.zontreck.ariasessentials.msgs.warps.del.success": "Warp successfully deleted", + "dev.zontreck.ariasessentials.msgs.warps.set.fail": "Failed to create warp", + "dev.zontreck.ariasessentials.msgs.warps.del.fail": "Failed to delete warp", + + "death.attack.vampiric_mend": "%1$s's health was drained by a Vampiric item" +} diff --git a/src/old/resources/assets/ariasessentials/models/block/blood_red.json b/src/old/resources/assets/ariasessentials/models/block/blood_red.json new file mode 100644 index 0000000..c54b731 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blood_red.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile.json new file mode 100644 index 0000000..5113788 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_light.json new file mode 100644 index 0000000..f2b53d3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/blue_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json new file mode 100644 index 0000000..93be66c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json new file mode 100644 index 0000000..926613b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json new file mode 100644 index 0000000..9b82c86 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..df7ce35 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..2afe8a7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json new file mode 100644 index 0000000..39b93ed --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json new file mode 100644 index 0000000..aa9f228 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json new file mode 100644 index 0000000..29c8e53 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..65ed440 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json new file mode 100644 index 0000000..5639f9e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json new file mode 100644 index 0000000..7b24bb9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json new file mode 100644 index 0000000..d9c7e35 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json new file mode 100644 index 0000000..7ed0853 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json new file mode 100644 index 0000000..bfb1fce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json new file mode 100644 index 0000000..90018f0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json new file mode 100644 index 0000000..abc1a0c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json new file mode 100644 index 0000000..248faac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json new file mode 100644 index 0000000..4f1294a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json new file mode 100644 index 0000000..5639f9e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json new file mode 100644 index 0000000..3046906 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json new file mode 100644 index 0000000..04d6bec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json new file mode 100644 index 0000000..7b24bb9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json new file mode 100644 index 0000000..9c08f8e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json new file mode 100644 index 0000000..7549029 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json new file mode 100644 index 0000000..d9c7e35 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json new file mode 100644 index 0000000..9802deb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json new file mode 100644 index 0000000..459b533 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json new file mode 100644 index 0000000..7ed0853 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json new file mode 100644 index 0000000..c7c04a4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json new file mode 100644 index 0000000..7386123 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json new file mode 100644 index 0000000..bfb1fce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json new file mode 100644 index 0000000..4057d97 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json new file mode 100644 index 0000000..14ade17 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json new file mode 100644 index 0000000..90018f0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json new file mode 100644 index 0000000..5724b69 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json new file mode 100644 index 0000000..57c5265 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json new file mode 100644 index 0000000..abc1a0c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json new file mode 100644 index 0000000..88f360f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json new file mode 100644 index 0000000..24c30f2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json new file mode 100644 index 0000000..248faac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json new file mode 100644 index 0000000..572e869 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json new file mode 100644 index 0000000..73fd6a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json new file mode 100644 index 0000000..6a6b419 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json new file mode 100644 index 0000000..3ae29d7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json new file mode 100644 index 0000000..1f8a32d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json new file mode 100644 index 0000000..c6c2ec9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json new file mode 100644 index 0000000..65f0007 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json new file mode 100644 index 0000000..6a2f947 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json new file mode 100644 index 0000000..8c03333 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json new file mode 100644 index 0000000..7cfb79d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json new file mode 100644 index 0000000..73fd6a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json new file mode 100644 index 0000000..8e13360 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json new file mode 100644 index 0000000..47f8fee --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json new file mode 100644 index 0000000..6a6b419 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json new file mode 100644 index 0000000..7aee18d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json new file mode 100644 index 0000000..313173f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json new file mode 100644 index 0000000..3ae29d7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json new file mode 100644 index 0000000..e7a64da --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json new file mode 100644 index 0000000..7d87bbc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json new file mode 100644 index 0000000..1f8a32d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json new file mode 100644 index 0000000..bd66adf --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json new file mode 100644 index 0000000..3708403 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json new file mode 100644 index 0000000..c6c2ec9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json new file mode 100644 index 0000000..6100109 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json new file mode 100644 index 0000000..3e95198 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json new file mode 100644 index 0000000..65f0007 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json new file mode 100644 index 0000000..b3d9261 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json new file mode 100644 index 0000000..8777c3c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json new file mode 100644 index 0000000..6a2f947 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json new file mode 100644 index 0000000..70f6da3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json new file mode 100644 index 0000000..ed88fb3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json new file mode 100644 index 0000000..8c03333 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json new file mode 100644 index 0000000..e868cfe --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json new file mode 100644 index 0000000..ab70c9b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json new file mode 100644 index 0000000..3bc8f18 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json new file mode 100644 index 0000000..fb41a7b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json new file mode 100644 index 0000000..88482c1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json new file mode 100644 index 0000000..34fa07b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json new file mode 100644 index 0000000..76f0ee4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json new file mode 100644 index 0000000..6ce14aa --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json new file mode 100644 index 0000000..83a46db --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json new file mode 100644 index 0000000..985759e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json new file mode 100644 index 0000000..72b8b28 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json new file mode 100644 index 0000000..f150b0a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json new file mode 100644 index 0000000..428a4c8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json new file mode 100644 index 0000000..ce81f14 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json new file mode 100644 index 0000000..3810fc1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json new file mode 100644 index 0000000..6dee365 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json new file mode 100644 index 0000000..0c39ff1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json new file mode 100644 index 0000000..057026a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json new file mode 100644 index 0000000..dd427ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json new file mode 100644 index 0000000..1fa7c47 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json new file mode 100644 index 0000000..136aea6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json new file mode 100644 index 0000000..141192a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json new file mode 100644 index 0000000..5df05af --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json new file mode 100644 index 0000000..f23ffa9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json new file mode 100644 index 0000000..b0bdbe2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json new file mode 100644 index 0000000..77fbaf6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json new file mode 100644 index 0000000..d0cb471 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json new file mode 100644 index 0000000..b1156a6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json new file mode 100644 index 0000000..ed5e7f2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json new file mode 100644 index 0000000..6d8da06 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json new file mode 100644 index 0000000..f320bca --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json new file mode 100644 index 0000000..b647a42 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json new file mode 100644 index 0000000..8855303 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json new file mode 100644 index 0000000..d2d0faa --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json new file mode 100644 index 0000000..b95c490 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json new file mode 100644 index 0000000..47b0205 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json new file mode 100644 index 0000000..73a0f5d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json new file mode 100644 index 0000000..e807d4d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json new file mode 100644 index 0000000..cce4e39 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json new file mode 100644 index 0000000..43885ae --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json new file mode 100644 index 0000000..dde4209 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json new file mode 100644 index 0000000..ab10146 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json new file mode 100644 index 0000000..8c13a9c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json new file mode 100644 index 0000000..18bcaec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json new file mode 100644 index 0000000..1d94fb2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json new file mode 100644 index 0000000..6239b79 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json new file mode 100644 index 0000000..9fa6a6d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json new file mode 100644 index 0000000..d473aac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json new file mode 100644 index 0000000..5654273 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json new file mode 100644 index 0000000..998224c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json new file mode 100644 index 0000000..1d2eb0e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json new file mode 100644 index 0000000..e424210 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json new file mode 100644 index 0000000..fba05de --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cobalt_block.json b/src/old/resources/assets/ariasessentials/models/block/cobalt_block.json new file mode 100644 index 0000000..860301c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cobalt_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/cobalt_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cobalt_ore.json b/src/old/resources/assets/ariasessentials/models/block/cobalt_ore.json new file mode 100644 index 0000000..2c8a99e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cobalt_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/cobalt_ore" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel b/src/old/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel new file mode 100644 index 0000000..5351868 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"uncrafter","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,16,16],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,16],"texture":1},"east":{"uv":[0,0,16,16],"texture":1},"south":{"uv":[0,0,16,16],"texture":1},"west":{"uv":[0,0,16,16],"texture":1},"up":{"uv":[0,0,16,16],"texture":2},"down":{"uv":[0,0,16,16],"texture":0}},"type":"cube","uuid":"ac9de27a-27bc-3953-347e-b633ca2f05d9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,11,-0.5],"to":[11,12,16.5],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":270,"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"rotation":90,"texture":1},"west":{"uv":[6,11,11,12],"rotation":180,"texture":1},"up":{"uv":[6,11,11,12],"rotation":90,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"1dafc799-0573-2936-1311-5277bbe2652e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,5],"to":[16.5,5,11],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":180,"texture":1},"east":{"uv":[6,11,11,12],"rotation":270,"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"rotation":90,"texture":1},"up":{"uv":[6,11,11,12],"rotation":180,"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"2f4b6eed-62e5-6d7b-6707-516136a671e5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,11,5],"to":[16.5,12,11],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":180,"texture":1},"east":{"uv":[6,11,11,12],"rotation":270,"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"rotation":90,"texture":1},"up":{"uv":[6,11,11,12],"rotation":180,"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"b98f4fbb-737c-74a9-c960-584b01b39472"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,4],"to":[16.5,12,5],"autouv":0,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"9de6a778-9dd2-a194-cfc0-105d9bae615b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,11],"to":[16.5,12,12],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"374756cf-fb4a-8aba-5a77-76c655b5952e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,4,-0.5],"to":[12,12,16.5],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"rotation":270,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"e835d294-407d-2f80-4174-02eee646252f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,4,-0.5],"to":[11,5,16.5],"autouv":0,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":270,"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"rotation":90,"texture":1},"west":{"uv":[6,11,11,12],"rotation":180,"texture":1},"up":{"uv":[6,11,11,12],"rotation":90,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"1d8996ea-5e9b-79a1-e32b-ca8f20eda51c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,4,-0.5],"to":[5,12,16.5],"autouv":0,"color":8,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"rotation":270,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"7d422c33-810a-d373-3d84-a13bb8f5cc87"},{"name":"grid","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[2,16,2],"to":[14,16.75,14],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[3,3,13,4],"texture":2},"east":{"uv":[3,3,13,4],"texture":2},"south":{"uv":[3,3,13,4],"texture":2},"west":{"uv":[3,3,13,4],"texture":2},"up":{"uv":[2,2,14,14],"texture":2},"down":{"uv":[0,0,12,12]}},"type":"cube","uuid":"32a37783-fda2-d727-cf9c-d99e2878a7e8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,12,-0.5],"to":[10,13,16.5],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[6,3,10,4],"texture":1},"east":{"uv":[6,3,7,4],"texture":1},"south":{"uv":[6,3,10,4],"texture":1},"west":{"uv":[6,3,7,4],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[6,3,10,4],"texture":1}},"type":"cube","uuid":"46ecc3cc-7916-4bcd-28e2-eb941d684855"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[3,15,-0.5],"to":[13,16.5,16.5],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[3,0,13,2],"texture":2},"east":{"uv":[3,0,13,2],"texture":2},"south":{"uv":[3,0,13,2],"texture":2},"west":{"uv":[3,0,13,2],"texture":2},"up":{"uv":[3,0,13,2],"texture":2},"down":{"uv":[3,0,13,2],"texture":2}},"type":"cube","uuid":"172385de-76db-6ec1-a312-45a3690ec58d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,14,-0.5],"to":[12,15,16.5],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[4,1,12,2],"texture":1},"east":{"uv":[4,1,5,2],"texture":1},"south":{"uv":[4,1,12,2],"texture":1},"west":{"uv":[4,1,5,2],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[4,1,12,2],"texture":1}},"type":"cube","uuid":"a2c5a217-698e-37df-618c-e853252d2d01"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,13,-0.5],"to":[11,14,16.5],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[5,2,11,3],"texture":1},"east":{"uv":[5,2,6,3],"texture":1},"south":{"uv":[5,2,11,3],"texture":1},"west":{"uv":[5,2,6,3],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[5,2,11,3],"texture":1}},"type":"cube","uuid":"04c55b72-16de-230f-76a4-a4ae7a5a3ca2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,12,6],"to":[16.5,13,10],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[6,3,7,4],"texture":1},"east":{"uv":[6,3,10,4],"texture":1},"south":{"uv":[6,3,7,4],"texture":1},"west":{"uv":[6,3,10,4],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[6,3,10,4],"rotation":90,"texture":1}},"type":"cube","uuid":"dc42b1da-d91b-bc2b-115b-f250a445652c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,15,3],"to":[16.5,16.5,13],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[3,0,13,2],"texture":2},"east":{"uv":[3,0,13,2],"texture":2},"south":{"uv":[3,0,13,2],"texture":2},"west":{"uv":[3,0,13,2],"texture":2},"up":{"uv":[3,0,13,2],"rotation":270,"texture":2},"down":{"uv":[3,0,13,2],"rotation":90,"texture":2}},"type":"cube","uuid":"a408a185-b0f6-84f3-ecb1-793a2b11fbb5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,14,4],"to":[16.5,15,12],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[4,1,5,2],"texture":1},"east":{"uv":[4,1,12,2],"texture":1},"south":{"uv":[4,1,5,2],"texture":1},"west":{"uv":[4,1,12,2],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[4,1,12,2],"rotation":90,"texture":1}},"type":"cube","uuid":"dbb7dbc7-b9db-0fcc-0582-442ea86f6b55"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,13,5],"to":[16.5,14,11],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[5,2,6,3],"texture":1},"east":{"uv":[5,2,11,3],"texture":1},"south":{"uv":[5,2,6,3],"texture":1},"west":{"uv":[5,2,11,3],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[5,2,11,3],"rotation":90,"texture":1}},"type":"cube","uuid":"564a8245-c5cf-32cc-523c-a493d3c84175"}],"outliner":["ac9de27a-27bc-3953-347e-b633ca2f05d9",{"name":"connection_slots","origin":[0,0,0],"color":0,"uuid":"b714af95-2528-cdd1-2a58-be2ebce94bd9","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["1dafc799-0573-2936-1311-5277bbe2652e","2f4b6eed-62e5-6d7b-6707-516136a671e5","b98f4fbb-737c-74a9-c960-584b01b39472","9de6a778-9dd2-a194-cfc0-105d9bae615b","374756cf-fb4a-8aba-5a77-76c655b5952e","e835d294-407d-2f80-4174-02eee646252f","1d8996ea-5e9b-79a1-e32b-ca8f20eda51c","7d422c33-810a-d373-3d84-a13bb8f5cc87"]},"32a37783-fda2-d727-cf9c-d99e2878a7e8",{"name":"group","origin":[0,0,0],"color":0,"uuid":"2cd47851-5d22-a7c5-c742-179ec7b7ffe8","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["46ecc3cc-7916-4bcd-28e2-eb941d684855","172385de-76db-6ec1-a312-45a3690ec58d","a2c5a217-698e-37df-618c-e853252d2d01","04c55b72-16de-230f-76a4-a4ae7a5a3ca2"]},{"name":"group","origin":[0,0,0],"color":0,"uuid":"66b65636-382c-d904-0f28-0005d296751a","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["dc42b1da-d91b-bc2b-115b-f250a445652c","a408a185-b0f6-84f3-ecb1-793a2b11fbb5","dbb7dbc7-b9db-0fcc-0582-442ea86f6b55","564a8245-c5cf-32cc-523c-a493d3c84175"]}],"textures":[{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png","name":"uncrafter_bottom.png","folder":"block","namespace":"ariasessentials","id":"0","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"edabc1e0-d543-629f-6193-ef1589f8cd5a","relative_path":"../../../../textures/block/uncrafter_bottom.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAGvSURBVDhPXVO7TgJREJ1FFtzloaJAIBpDpyGxsaGlsvEzNNHC2Jj4bf4BjY2JiY0xqMHwlofgsguYM+RsLk6z93JnzpwzZ7CqF5fLaTQqiC3Pk89kSs+56URi87m4gS+1fFF/O+m25Wk3K19uUiqthtSTabHKN7fL5509qTbeNSk986TpJtbAevFNfUNhYTLWLwJnq3B3v8Ql4/1Kyp/pA2JkxwSFSC73O+EZjVqOG94tSgAdIoMeo5YraqfD8VBBwZbdkR8yQAJATttN8SMRGcTjeqdeAlEGQFBjVa6uVQKSIcPUCyaUwjc2whegOkRoNztQ89F3TxK+Lx3HEScIlDr0749HYi8W8pjNrwDYFQkooq24o/BlOxM6ACal4UBlwnKdAXSdfbypbjBBkAUKzEB3BHIhb20PQO+/HC4MmpzXX8WdBzLZWC3ej21LaKM5LFjFhaGFkGJuLBgg1AXQBuXjfldpPRyUFABBCQTFjDATuqIAtBD7DxkIDNa0DDm4I8wtDV3ggrAjAZCMuQCALtFO5IQMTLosMLcO7+aqA3htBrSK2s0/EaWQHRvg/gfDmTZgal/FbwAAAABJRU5ErkJggg=="},{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png","name":"uncrafter_side.png","folder":"block","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"e4e3cf2c-1109-a760-fc62-0831300ff7a0","relative_path":"../../../../textures/block/uncrafter_side.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAHvSURBVDhPfVNLLwNRFP5Gqx5VjEcrERuPtvFMEKIVQkJEbLHxIyy6ZcHWwk7sJcLaQiLxWGCjEkKZekSCRpuGKmXVjHtu515TwZdM5s69c77znXO+q2B2XofA3Ixc/ruYnZfHChE4bzWo6TReLBYMrKzg8o9oL9vfnQ7I02hxCRTXdECnBZGURh8R7hnEpKFEEFEgYc3I7D7c5v8RFF9vt45iFbmxCPZGx0GHRRYr0ptbWTrsoyO4LqvgSrWGRriSr+AK+jtb9QtvK5SKKpScBxHe2pGBbcbqxETlnJpCrNbDFXMFHRMT+r3NhmrtFBH/MKKLCyisAXJy2WPLfuIHABHwQJaQv6kHevyJ1+9QKxFcX0e+ywj8QfJ8BLD/URc+w427+VtB0NvCayr9TEFbXoJNNWU2kSROAffQAF6bOkBJuQImSVftDiQK7FyFtroKq/2HfIMkSWNhk6D6s0qgbkqwEf5WP+2932Z6QMFSQfvIkH7c1fftA2MKv5F83Gd6IHxDRLwEGgv1gFhjzIn/wmRj2QNiMpdhdpowjHh7rkLcSAJ8jPRBDaS7QGoI/hCzT14B9uvcUh0lqn+4Q7y8kjedOzHrNhq0ostESki4qmVGodS3vYGDwbEMgScawUvqTV4mIZeIhCLaI5hLpb0vjgfXWl4BbX4AAAAASUVORK5CYII="},{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png","name":"uncrafter.png","folder":"block","namespace":"ariasessentials","id":"2","width":16,"height":512,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":20,"frame_order_type":"loop","frame_order":"","frame_interpolate":true,"visible":true,"internal":true,"saved":true,"uuid":"0b952e7d-256f-d0eb-1170-89403985b747","relative_path":"../../../../textures/block/uncrafter.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAIACAYAAACLuuzTAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAANNSURBVHhe7Z0xTsMwFIbNQZi5A2JEYmFj4DQwwGkY2FiQGBF3YOYg0DRtCWlsP7/nENv5KiFVbfhTx/4/Pz/byYm7f/x2+9fD3eFt8M394+Hrk63Ax3v/wdurTODyqj/u/MIdBG6l/7w7xVMnshVwbluE283fl+z87nRz3NPu2COB7svu1YmF3s8nICkFRehrp6Ra2HlB35SzmMlsZ7MAPPhDJDNQsvLg7LqX+3w5xpvITCqBrEWohcrwgPjAHUco5fJgbO1kHogF4IHkCvTH/Ia6xAeMFyaAImlK4lh5aGGxnYdIUwlkLYLv14ivgUogvQjEB8QHxAedb+bN4qiItADS4AE8gAfz8MDHAHGIYxYgPmB+ITanMJx3EA2+Vamw9JY4mmMxe8EssMoiEB+0GB+E8ukiHpgFVmmmBpAGD1rngWquLTTcFQEFHjhnjlDMAum1AA/WxIOSR64NdK4NFAEewIOJfOICPVPATKq5Nl9cJGZieucKDzKZyby80CzQ1vpEs53NAlnNpMpokgKR1MF4xTTxQSakbYCiX/Sde/+C2c5mAUlbDK7FMdvZLJC1CLVkceABPKhqvDCOFbxTpmXxoJYQBx7AA3gwz3ok8yYQs0B6iAMP4EGRPDB7wSyQbqbRsM/8C8wC6UWABy3ywLzw3SyQ3hIbMFMDRYAHrfNANVnn65n+b7LO3DeaBVaJNHiwJh6Ik3GYSUKDuW9vtEAtwIOWeeBr1Ps9T9H9TAj4uVDBRZRA7e+sLzxokgc34Zbw9Rzr2hBwp/VfA3jAfufhfme696q79/14QV2N8AAe+O5/MGwb4lDXB5eowPBsU806KmD2AgISGrBeeXuVuN/6Qnf6Ts5oqvtGeAAPHM9fiD5zoWsl4t45drMlb0JS0haD+xew8++95dVMTK8F8olN5hN3DUFt5wVmujyLeaaGOUlIyy4wHgoVPEkDD8gfxBiQZKaY2PzxgfoXmJE2FPAZq/AQBx7Ag5iB4EHvkuiYKd1MghBHldVlvBCpi6N04P548get5Q9ieItG62qBbDxQT9JMhThJQEkvAvkD8gfFP38hFPpXxoMpOpVUBHgAD+BB14/O+3ymWpAGD+ABPIAH/cgiw6NIl36e6w/NB6pXl3BUBQAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"scale":[0.5,0.5,0.5]},"thirdperson_lefthand":{"scale":[0.5,0.5,0.5]},"firstperson_righthand":{"scale":[0.5,0.5,0.5]},"firstperson_lefthand":{"scale":[0.5,0.5,0.5]},"ground":{"scale":[0.25,0.25,0.25]},"gui":{"rotation":[59,-39,-3],"scale":[0.5,0.5,0.5]},"head":{"scale":[0.95,0.95,0.95]},"fixed":{"rotation":[-90,0,0],"scale":[0.5,0.5,0.5]}}} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json b/src/old/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json new file mode 100644 index 0000000..7d70c9e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json @@ -0,0 +1,278 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "ariasessentials:block/uncrafter_bottom", + "1": "ariasessentials:block/uncrafter_side", + "2": "ariasessentials:block/uncrafter", + "particle": "ariasessentials:block/uncrafter_side" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + } + }, + { + "from": [5, 11, -0.5], + "to": [11, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 5], + "to": [16.5, 5, 11], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 11, 5], + "to": [16.5, 12, 11], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 4], + "to": [16.5, 12, 5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 11], + "to": [16.5, 12, 12], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [11, 4, -0.5], + "to": [12, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [5, 4, -0.5], + "to": [11, 5, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 4, -0.5], + "to": [5, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "name": "grid", + "from": [2, 16, 2], + "to": [14, 16.75, 14], + "faces": { + "north": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "east": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "south": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "west": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "up": {"uv": [2, 2, 14, 14], "texture": "#2"}, + "down": {"uv": [0, 0, 12, 12], "texture": "#missing"} + } + }, + { + "from": [6, 12, -0.5], + "to": [10, 13, 16.5], + "faces": { + "north": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "east": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "south": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "west": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [6, 3, 10, 4], "texture": "#1"} + } + }, + { + "from": [3, 15, -0.5], + "to": [13, 16.5, 16.5], + "faces": { + "north": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "east": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "south": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "west": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "up": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "down": {"uv": [3, 0, 13, 2], "texture": "#2"} + } + }, + { + "from": [4, 14, -0.5], + "to": [12, 15, 16.5], + "faces": { + "north": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "east": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "south": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "west": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [4, 1, 12, 2], "texture": "#1"} + } + }, + { + "from": [5, 13, -0.5], + "to": [11, 14, 16.5], + "faces": { + "north": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "east": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "south": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "west": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [5, 2, 11, 3], "texture": "#1"} + } + }, + { + "from": [-0.5, 12, 6], + "to": [16.5, 13, 10], + "faces": { + "north": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "east": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "south": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "west": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [6, 3, 10, 4], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 15, 3], + "to": [16.5, 16.5, 13], + "faces": { + "north": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "east": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "south": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "west": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "up": {"uv": [3, 0, 13, 2], "rotation": 270, "texture": "#2"}, + "down": {"uv": [3, 0, 13, 2], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [-0.5, 14, 4], + "to": [16.5, 15, 12], + "faces": { + "north": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "east": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "south": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "west": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [4, 1, 12, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 13, 5], + "to": [16.5, 14, 11], + "faces": { + "north": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "east": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "south": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "west": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [5, 2, 11, 3], "rotation": 90, "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [59, -39, -3], + "scale": [0.5, 0.5, 0.5] + }, + "head": { + "scale": [0.95, 0.95, 0.95] + }, + "fixed": { + "rotation": [-90, 0, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + { + "name": "connection_slots", + "origin": [0, 0, 0], + "color": 0, + "children": [1, 2, 3, 4, 5, 6, 7, 8] + }, + 9, + { + "name": "group", + "origin": [0, 0, 0], + "color": 0, + "children": [10, 11, 12, 13] + }, + { + "name": "group", + "origin": [0, 0, 0], + "color": 0, + "children": [14, 15, 16, 17] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan.json b/src/old/resources/assets/ariasessentials/models/block/cyan.json new file mode 100644 index 0000000..4c841a8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile.json new file mode 100644 index 0000000..611e861 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_light.json new file mode 100644 index 0000000..db56b3b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/cyan_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_slab.json new file mode 100644 index 0000000..d7c9afc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/cyan_pool_tile", + "side": "ariasessentials:block/cyan_pool_tile", + "top": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_slab_top.json new file mode 100644 index 0000000..ddeef28 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/cyan_pool_tile", + "side": "ariasessentials:block/cyan_pool_tile", + "top": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs.json new file mode 100644 index 0000000..08ee466 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/cyan_pool_tile", + "side": "ariasessentials:block/cyan_pool_tile", + "top": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs_inner.json new file mode 100644 index 0000000..45dc3a7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/cyan_pool_tile", + "side": "ariasessentials:block/cyan_pool_tile", + "top": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs_outer.json new file mode 100644 index 0000000..1d9bb24 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/cyan_pool_tile", + "side": "ariasessentials:block/cyan_pool_tile", + "top": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_inventory.json new file mode 100644 index 0000000..d7a4753 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_post.json new file mode 100644 index 0000000..b1fc921 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_side.json new file mode 100644 index 0000000..74b8abe --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..fc7cd78 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_stairs.json b/src/old/resources/assets/ariasessentials/models/block/cyan_stairs.json new file mode 100644 index 0000000..d54fd27 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json new file mode 100644 index 0000000..8f551bf --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json new file mode 100644 index 0000000..9ecf19c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_tile.json b/src/old/resources/assets/ariasessentials/models/block/cyan_tile.json new file mode 100644 index 0000000..8371b93 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_tile.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/top", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/cyan_tile_w_circle", + "side": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_tile_br.json b/src/old/resources/assets/ariasessentials/models/block/cyan_tile_br.json new file mode 100644 index 0000000..ce0032b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_tile_br.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/cyan_tile_transition", + "side": "ariasessentials:block/thresholds/cyan" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json b/src/old/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json new file mode 100644 index 0000000..9466361 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_floor_to_wall", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json b/src/old/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json new file mode 100644 index 0000000..206347a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_wall", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json b/src/old/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json new file mode 100644 index 0000000..1e45786 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_wall2", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile.json new file mode 100644 index 0000000..9cd3bf3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_light.json new file mode 100644 index 0000000..9f73b98 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_pool_tile_light" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json new file mode 100644 index 0000000..29ceb08 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json new file mode 100644 index 0000000..41e6017 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json new file mode 100644 index 0000000..a12ed67 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json new file mode 100644 index 0000000..c794fa9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json new file mode 100644 index 0000000..61019c2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_red_bed.json b/src/old/resources/assets/ariasessentials/models/block/dark_red_bed.json new file mode 100644 index 0000000..6577c90 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_red_carpet.json b/src/old/resources/assets/ariasessentials/models/block/dark_red_carpet.json new file mode 100644 index 0000000..3567748 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_red_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json b/src/old/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json new file mode 100644 index 0000000..c35d870 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "ariasessentials:block/dark_red_shulker_box" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dark_red_wool.json b/src/old/resources/assets/ariasessentials/models/block/dark_red_wool.json new file mode 100644 index 0000000..a1c3b22 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dark_red_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json b/src/old/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..fcd2a82 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/deepslate_eternium_ore_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/deprecated.json b/src/old/resources/assets/ariasessentials/models/block/deprecated.json new file mode 100644 index 0000000..8970a27 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/deprecated.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/deprecated" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json new file mode 100644 index 0000000..293a975 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_light.json new file mode 100644 index 0000000..dd1fa7a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_blue_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..9aa4f75 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json new file mode 100644 index 0000000..45189ca --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..74bff36 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..191a772 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..785db09 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json new file mode 100644 index 0000000..8530b2b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json new file mode 100644 index 0000000..79e39ec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json new file mode 100644 index 0000000..15b5e7b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..0675885 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile.json new file mode 100644 index 0000000..ba05ad6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_light.json new file mode 100644 index 0000000..1027381 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_cyan_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_slab.json new file mode 100644 index 0000000..1380616 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_cyan_pool_tile", + "side": "ariasessentials:block/dirty_cyan_pool_tile", + "top": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_slab_top.json new file mode 100644 index 0000000..52ad87a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_cyan_pool_tile", + "side": "ariasessentials:block/dirty_cyan_pool_tile", + "top": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs.json new file mode 100644 index 0000000..fb96c40 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_cyan_pool_tile", + "side": "ariasessentials:block/dirty_cyan_pool_tile", + "top": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs_inner.json new file mode 100644 index 0000000..3138e52 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_cyan_pool_tile", + "side": "ariasessentials:block/dirty_cyan_pool_tile", + "top": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs_outer.json new file mode 100644 index 0000000..15ce00b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_cyan_pool_tile", + "side": "ariasessentials:block/dirty_cyan_pool_tile", + "top": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_inventory.json new file mode 100644 index 0000000..2980e55 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_post.json new file mode 100644 index 0000000..f53ab34 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_side.json new file mode 100644 index 0000000..287f439 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..3a3fe73 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_cyan_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_cyan_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json new file mode 100644 index 0000000..57508a9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_light.json new file mode 100644 index 0000000..d3718b3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_green_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..5344b8e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json new file mode 100644 index 0000000..d19fdd7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..dec0a2b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json new file mode 100644 index 0000000..9f7a4f5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json new file mode 100644 index 0000000..4abc9a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json new file mode 100644 index 0000000..ea0ec22 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json new file mode 100644 index 0000000..f0ee243 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json new file mode 100644 index 0000000..05355a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..c809e63 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile.json new file mode 100644 index 0000000..f5b2f5d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_light.json new file mode 100644 index 0000000..f9d2c9d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json new file mode 100644 index 0000000..31b5751 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json new file mode 100644 index 0000000..98fc188 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..68ee419 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json new file mode 100644 index 0000000..146e9ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json new file mode 100644 index 0000000..f3e00fc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json new file mode 100644 index 0000000..0eaa596 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json new file mode 100644 index 0000000..c6152f9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json new file mode 100644 index 0000000..9129b3c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..66ada0b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json new file mode 100644 index 0000000..7adfed2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_light.json new file mode 100644 index 0000000..8b32ae0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_red_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..303cbec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json new file mode 100644 index 0000000..d16f47b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..8db8504 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..62ddc44 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..5ba1eac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json new file mode 100644 index 0000000..0f74614 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json new file mode 100644 index 0000000..f5e43f6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json new file mode 100644 index 0000000..aa025b4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..2ec7d04 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_recessed_model.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_recessed_model.json new file mode 100644 index 0000000..827f66e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_recessed_model.json @@ -0,0 +1,283 @@ +{ + "parent": "block/block", + "textures": { + "f": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_pole_side", + "s": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture", + "particle": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "d": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + }, + "elements": [ + { + "from": [ + 4, + 0, + 11 + ], + "to": [ + 12, + 16, + 13 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 6 + ] + }, + "faces": { + "east": { + "uv": [ + 3, + 0, + 5, + 16 + ], + "texture": "#d" + }, + "south": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#d" + }, + "west": { + "uv": [ + 11, + 0, + 13, + 16 + ], + "texture": "#d" + }, + "up": { + "uv": [ + 4, + 11, + 12, + 13 + ], + "texture": "#s" + }, + "down": { + "uv": [ + 4, + 3, + 12, + 5 + ], + "texture": "#s" + } + } + }, + { + "from": [ + 0, + 0, + 1 + ], + "to": [ + 8, + 16, + 11 + ], + "faces": { + "north": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "south": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "west": { + "uv": [ + 1, + 0, + 11, + 16 + ], + "texture": "#d" + }, + "up": { + "uv": [ + 0, + 1, + 8, + 11 + ], + "texture": "#d" + }, + "down": { + "uv": [ + 0, + 5, + 8, + 15 + ], + "texture": "#d" + } + } + }, + { + "from": [ + 8, + 0, + 1 + ], + "to": [ + 16, + 16, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "east": { + "uv": [ + 5, + 0, + 15, + 16 + ], + "texture": "#d" + }, + "south": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "up": { + "uv": [ + 8, + 1, + 16, + 11 + ], + "texture": "#d" + }, + "down": { + "uv": [ + 8, + 5, + 16, + 15 + ], + "texture": "#d" + } + } + }, + { + "from": [ + 3, + 0, + 0 + ], + "to": [ + 13, + 16, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + -3 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 14, + 16 + ], + "texture": "#d" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "texture": "#s" + }, + "south": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#d" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#s" + }, + "up": { + "uv": [ + 4, + 0, + 12, + 1 + ], + "texture": "#s" + }, + "down": { + "uv": [ + 4, + 15, + 12, + 16 + ], + "texture": "#s" + } + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_corner_model.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_corner_model.json new file mode 100644 index 0000000..186cfe7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_corner_model.json @@ -0,0 +1,86 @@ +{ + "parent": "block/block", + "textures": { + "d": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_down_texture", + "n": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_side_texture", + "particle": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "s": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "u": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_up_texture" + }, + "elements": [ + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 16, + 16 + ], + "faces": { + "north": { + "uv": [ + 16, + 0, + 0, + 16 + ], + "texture": "#n", + "cullface": "north" + }, + "east": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#n", + "cullface": "east" + }, + "south": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#s", + "cullface": "south" + }, + "west": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#s", + "cullface": "west" + }, + "up": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#u", + "cullface": "up" + }, + "down": { + "uv": [ + 0, + 0, + 16, + 16 + ], + "texture": "#d", + "cullface": "down" + } + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_down_model.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_down_model.json new file mode 100644 index 0000000..b625b6e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_down_model.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "down": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture", + "up": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "north": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture", + "south": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture", + "west": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture", + "east": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_up_model.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_up_model.json new file mode 100644 index 0000000..4460b42 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_sastor_up_model.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "particle": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "down": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "up": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture", + "north": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture", + "south": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture", + "west": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture", + "east": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_vertically_slit_model.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_vertically_slit_model.json new file mode 100644 index 0000000..e3ede38 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/brick/clinker_brick_vertically_slit_model.json @@ -0,0 +1,247 @@ +{ + "parent": "block/block", + "textures": { + "f": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_pole_side", + "s": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture", + "particle": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "d": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + }, + "elements": [ + { + "from": [ + 0, + 0, + 1 + ], + "to": [ + 8, + 16, + 15 + ], + "faces": { + "north": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "south": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "west": { + "uv": [ + 1, + 0, + 15, + 16 + ], + "texture": "#d" + }, + "up": { + "uv": [ + 0, + 1, + 8, + 15 + ], + "texture": "#d" + }, + "down": { + "uv": [ + 0, + 1, + 8, + 15 + ], + "texture": "#d" + } + } + }, + { + "from": [ + 8, + 0, + 1 + ], + "to": [ + 16, + 16, + 15 + ], + "faces": { + "north": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "east": { + "uv": [ + 1, + 0, + 15, + 16 + ], + "texture": "#d" + }, + "south": { + "uv": [ + 4, + 0, + 12, + 16 + ], + "texture": "#f" + }, + "up": { + "uv": [ + 8, + 1, + 16, + 15 + ], + "texture": "#d" + }, + "down": { + "uv": [ + 8, + 1, + 16, + 15 + ], + "texture": "#d" + } + } + }, + { + "from": [ + 3, + 0, + 0 + ], + "to": [ + 13, + 16, + 1 + ], + "faces": { + "north": { + "uv": [ + 3, + 0, + 13, + 16 + ], + "texture": "#d" + }, + "east": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "texture": "#s" + }, + "west": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#s" + }, + "up": { + "uv": [ + 3, + 0, + 13, + 1 + ], + "texture": "#s" + }, + "down": { + "uv": [ + 3, + 15, + 13, + 16 + ], + "texture": "#s" + } + } + }, + { + "from": [ + 3, + 0, + 15 + ], + "to": [ + 13, + 16, + 16 + ], + "faces": { + "east": { + "uv": [ + 0, + 0, + 1, + 16 + ], + "texture": "#s" + }, + "south": { + "uv": [ + 3, + 0, + 13, + 16 + ], + "texture": "#d" + }, + "west": { + "uv": [ + 15, + 0, + 16, + 16 + ], + "texture": "#s" + }, + "up": { + "uv": [ + 3, + 15, + 13, + 16 + ], + "texture": "#s" + }, + "down": { + "uv": [ + 3, + 0, + 13, + 1 + ], + "texture": "#s" + } + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk.json new file mode 100644 index 0000000..c6ac363 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk.json @@ -0,0 +1,105 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, -0.25]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#s"} + } + }, + { + "from": [15, 0, 1], + "to": [16, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [15, 1, 16, 15], "texture": "#s"}, + "down": {"uv": [15, 1, 16, 15], "texture": "#s"} + } + }, + { + "from": [0, 0, 15], + "to": [16, 2, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 14.75]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#s"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 1, 15], "texture": "#s"} + } + }, + { + "from": [1, 2, 1], + "to": [15, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -6.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "texture": "#t"} + } + }, + { + "from": [1, 1, 1], + "to": [15, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -7.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 1, 1.75], + "scale": [0.3, 0.3, 0.3] + }, + "firstperson_righthand": { + "rotation": [8, 0, 42], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0.25, 1.25, -3], + "scale": [0.6, 0.6, 0.6] + }, + "fixed": { + "rotation": [-90, 0, 0], + "translation": [0, 0, -4], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_rail_n.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_rail_n.json new file mode 100644 index 0000000..5d6c90e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_rail_n.json @@ -0,0 +1,152 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "frame": "ariasessentials:block/engineersdecor/material/steel_texture", + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, -0.25]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#s"} + } + }, + { + "from": [15, 0, 1], + "to": [16, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [15, 1, 16, 15], "texture": "#s"}, + "down": {"uv": [15, 1, 16, 15], "texture": "#s"} + } + }, + { + "from": [0, 0, 15], + "to": [16, 2, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 14.75]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#s"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 1, 15], "texture": "#s"} + } + }, + { + "from": [1, 2, 1], + "to": [15, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -6.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "texture": "#t"} + } + }, + { + "from": [1, 1, 1], + "to": [15, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -7.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"} + } + }, + { + "from": [0, 2, 0], + "to": [1, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "east": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "south": {"uv": [0, 1, 1, 14], "texture": "#frame"}, + "west": {"uv": [0, 1, 1, 14], "texture": "#frame"} + } + }, + { + "from": [0, 15, 0], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 16, 1], "texture": "#frame"}, + "east": {"uv": [15, 0, 16, 1], "texture": "#frame"}, + "south": {"uv": [0, 0, 16, 1], "texture": "#frame"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#frame"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#frame"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#frame"} + } + }, + { + "from": [1, 14.5, 0.25], + "to": [15, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 0]}, + "faces": { + "north": {"uv": [1, 1, 15, 1.5], "texture": "#frame"}, + "south": {"uv": [1, 1, 15, 1.5], "texture": "#frame"}, + "up": {"uv": [1, 0.25, 15, 1], "texture": "#frame"}, + "down": {"uv": [1, 15, 15, 15.75], "texture": "#frame"} + } + }, + { + "from": [15, 2, 0], + "to": [16, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 1, 1, 14], "texture": "#frame"}, + "east": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "south": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "west": {"uv": [0, 1, 1, 14], "texture": "#frame"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 1, 1.75], + "scale": [0.3, 0.3, 0.3] + }, + "firstperson_righthand": { + "rotation": [8, 0, 42], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0.25, 3, -3], + "scale": [0.6, 0.6, 0.6] + }, + "fixed": { + "rotation": [-90, 0, 0], + "translation": [0, 0, -4], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_rail_ne.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_rail_ne.json new file mode 100644 index 0000000..3f5ae46 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_rail_ne.json @@ -0,0 +1,187 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "frame": "ariasessentials:block/engineersdecor/material/steel_texture", + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 2, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, -0.25]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#s"} + } + }, + { + "from": [15, 0, 1], + "to": [16, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [15, 1, 16, 15], "texture": "#s"}, + "down": {"uv": [15, 1, 16, 15], "texture": "#s"} + } + }, + { + "from": [0, 0, 15], + "to": [16, 2, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 14.75]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#s"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 1, 15], "texture": "#s"} + } + }, + { + "from": [1, 2, 1], + "to": [15, 2, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -6.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "texture": "#t"} + } + }, + { + "from": [1, 1, 1], + "to": [15, 1, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -7.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"} + } + }, + { + "from": [0, 2, 0], + "to": [1, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "east": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "south": {"uv": [0, 1, 1, 14], "texture": "#frame"}, + "west": {"uv": [0, 1, 1, 14], "texture": "#frame"} + } + }, + { + "from": [15, 2, 15], + "to": [16, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [23, 8, 15.5]}, + "faces": { + "north": {"uv": [0, 1, 1, 14], "texture": "#frame"}, + "east": {"uv": [0, 1, 1, 14], "texture": "#frame"}, + "south": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "west": {"uv": [15, 1, 16, 14], "texture": "#frame"} + } + }, + { + "from": [0, 15, 0], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 16, 1], "texture": "#frame"}, + "east": {"uv": [15, 0, 16, 1], "texture": "#frame"}, + "south": {"uv": [0, 0, 16, 1], "texture": "#frame"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#frame"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#frame"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#frame"} + } + }, + { + "from": [15, 15, 1], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 2]}, + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#frame"}, + "east": {"uv": [0, 0, 15, 1], "texture": "#frame"}, + "south": {"uv": [15, 0, 16, 1], "texture": "#frame"}, + "west": {"uv": [1, 0, 16, 1], "texture": "#frame"}, + "up": {"uv": [15, 1, 16, 16], "texture": "#frame"}, + "down": {"uv": [15, 0, 16, 15], "texture": "#frame"} + } + }, + { + "from": [1, 14.5, 0.25], + "to": [15, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 0]}, + "faces": { + "north": {"uv": [1, 1, 15, 1.5], "texture": "#frame"}, + "south": {"uv": [1, 1, 15, 1.5], "texture": "#frame"}, + "up": {"uv": [1, 0.25, 15, 1], "texture": "#frame"}, + "down": {"uv": [1, 15, 15, 15.75], "texture": "#frame"} + } + }, + { + "from": [15, 14.5, 1], + "to": [15.75, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [9, 7, 1]}, + "faces": { + "east": {"uv": [1, 1, 15, 1.5], "texture": "#frame"}, + "west": {"uv": [1, 1, 15, 1.5], "texture": "#frame"}, + "up": {"uv": [15, 1, 15.75, 15], "texture": "#frame"}, + "down": {"uv": [15, 1, 15.75, 15], "texture": "#frame"} + } + }, + { + "from": [15, 2, 0], + "to": [16, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 1, 1, 14], "texture": "#frame"}, + "east": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "south": {"uv": [15, 1, 16, 14], "texture": "#frame"}, + "west": {"uv": [0, 1, 1, 14], "texture": "#frame"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.75, 1.75, 1.25], + "scale": [0.2, 0.2, 0.2] + }, + "firstperson_righthand": { + "rotation": [20, -59, 15], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, 45, 0], + "translation": [0.25, 0, -3], + "scale": [0.6, 0.6, 0.6] + }, + "fixed": { + "rotation": [-90, 0, 0], + "translation": [0, 0, -3.5], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs.json new file mode 100644 index 0000000..782fcd8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs.json @@ -0,0 +1,289 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [1, 2, 15], + "to": [15, 4, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 2, 9], + "to": [15, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 2, 8], + "to": [15, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 2, 9], + "to": [2, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 3, 9], + "to": [14, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 4, 9], + "to": [14, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [1, 10, 7], + "to": [15, 12, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 10, 0], + "to": [15, 12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 10, 1], + "to": [2, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 11, 1], + "to": [14, 11, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 12, 1], + "to": [14, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [15, -1, 14], + "to": [16, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15, 14, -1], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15.25, 9, -10], + "to": [15.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [0, -1, 14], + "to": [1, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0, 14, -1], + "to": [1, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0.25, 9, -10], + "to": [0.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 2, 1], + "scale": [0.2, 0.2, 0.2] + }, + "firstperson_righthand": { + "rotation": [-5, -8, 14], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, -45, 0], + "translation": [-0.25, 0, -3], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 90, 0], + "translation": [0, 0.25, -3.25], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + }, + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [6, 7, 8, 9, 10, 11] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [12, 13, 14] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [15, 16, 17] + }, + { + "name": "VoxelShapes", + "origin": [8, 8, 8], + "color": 0, + "children": [] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_dr.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..aa2384e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_dr.json @@ -0,0 +1,419 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [1, 2, 15], + "to": [15, 4, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 2, 9], + "to": [15, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 2, 8], + "to": [15, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 2, 9], + "to": [2, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 3, 9], + "to": [14, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 4, 9], + "to": [14, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [1, 10, 7], + "to": [15, 12, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 10, 0], + "to": [15, 12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 10, 1], + "to": [2, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 11, 1], + "to": [14, 11, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 12, 1], + "to": [14, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [15, -1, 14], + "to": [16, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15, 14, -1], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15.25, 9, -10], + "to": [15.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [0, -1, 14], + "to": [1, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0, 14, -1], + "to": [1, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0.25, 9, -10], + "to": [0.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [15, 19, 14], + "to": [16, 21, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15, 19, -1], + "to": [16, 21, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15.4, 0.25, 14.5], + "to": [15.65, 19.25, 15.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [15.4, 15.25, -0.5], + "to": [15.65, 19.25, 0.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [15.4, 19.25, 0.5], + "to": [15.65, 20.25, 14.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [0, 19, 14], + "to": [1, 21, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0, 19, -1], + "to": [1, 21, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0.4, 0.25, 14.5], + "to": [0.65, 19.25, 15.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [0.4, 15.25, -0.5], + "to": [0.65, 19.25, 0.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [0.4, 19.25, 0.5], + "to": [0.65, 20.25, 14.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 2, 1], + "scale": [0.2, 0.2, 0.2] + }, + "firstperson_righthand": { + "rotation": [-5, -8, 14], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, -45, 0], + "translation": [-0.25, 0, -3], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 90, 0], + "translation": [0, 0.25, -3.25], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + }, + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [6, 7, 8, 9, 10, 11] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [12, 13, 14] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [15, 16, 17] + }, + { + "name": "railing", + "origin": [8, 8, 8], + "color": 0, + "children": [18, 19, 20, 21, 22] + }, + { + "name": "railing", + "origin": [8, 8, 8], + "color": 0, + "children": [23, 24, 25, 26, 27] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_lr.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..abfc91d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_lr.json @@ -0,0 +1,351 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [1, 2, 15], + "to": [15, 4, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 2, 9], + "to": [15, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 2, 8], + "to": [15, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 2, 9], + "to": [2, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 3, 9], + "to": [14, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 4, 9], + "to": [14, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [1, 10, 7], + "to": [15, 12, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 10, 0], + "to": [15, 12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 10, 1], + "to": [2, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 11, 1], + "to": [14, 11, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 12, 1], + "to": [14, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [15, -1, 14], + "to": [16, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15, 14, -1], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15.25, 9, -10], + "to": [15.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [0, -1, 14], + "to": [1, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0, 14, -1], + "to": [1, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0.25, 9, -10], + "to": [0.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [0, 19, 14], + "to": [1, 21, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0, 19, -1], + "to": [1, 21, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0.4, 0.25, 14.5], + "to": [0.65, 19.25, 15.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [0.4, 15.25, -0.5], + "to": [0.65, 19.25, 0.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [0.4, 19.25, 0.5], + "to": [0.65, 20.25, 14.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 2, 1], + "scale": [0.2, 0.2, 0.2] + }, + "firstperson_righthand": { + "rotation": [-5, -8, 14], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, -45, 0], + "translation": [-0.25, 0, -3], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 90, 0], + "translation": [0, 0.25, -3.25], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + }, + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [6, 7, 8, 9, 10, 11] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [12, 13, 14] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [15, 16, 17] + }, + { + "name": "railing", + "origin": [8, 8, 8], + "color": 0, + "children": [18, 19, 20, 21, 22] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_rr.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..5ee1a4d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_stairs_rr.json @@ -0,0 +1,351 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [1, 2, 15], + "to": [15, 4, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 2, 9], + "to": [15, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 2, 8], + "to": [15, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 2, 9], + "to": [2, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 3, 9], + "to": [14, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 4, 9], + "to": [14, 4, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [1, 10, 7], + "to": [15, 12, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 16.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 16, 0], "texture": "#s"}, + "down": {"uv": [0, 16, 16, 15], "texture": "#s"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [7, -4.5, 15.25]}, + "faces": { + "north": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [15, 7, 16, 1], "texture": "#s"}, + "down": {"uv": [15, 15, 16, 9], "texture": "#s"} + } + }, + { + "from": [1, 10, 0], + "to": [15, 12, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4.5, 9.25]}, + "faces": { + "north": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 0, 16], "texture": "#s"}, + "west": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 16, 16, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 16, 0], "texture": "#s"} + } + }, + { + "from": [1, 10, 1], + "to": [2, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 15.25]}, + "faces": { + "north": {"uv": [1, 14, 0, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 9, 16], "texture": "#s"}, + "south": {"uv": [16, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [7, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 7, 1, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 1, 9], "texture": "#s"} + } + }, + { + "from": [2, 11, 1], + "to": [14, 11, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -5.5, 8.75]}, + "faces": { + "up": {"uv": [2, 1, 14, 7], "texture": "#t"}, + "down": {"uv": [2, 8, 14, 14], "texture": "#t"} + } + }, + { + "from": [2, 12, 1], + "to": [14, 12, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -4.5, 8.75]}, + "faces": { + "up": {"uv": [3, 3, 15, 9], "texture": "#t"}, + "down": {"uv": [2, 9, 14, 15], "texture": "#t"} + } + }, + { + "from": [15, -1, 14], + "to": [16, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15, 14, -1], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15.25, 9, -10], + "to": [15.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [0, -1, 14], + "to": [1, 1, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0, 14, -1], + "to": [1, 16, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [0.25, 9, -10], + "to": [0.75, 11, 11], + "rotation": {"angle": 45, "axis": "x", "origin": [-15, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 0.5, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#s"} + } + }, + { + "from": [15, 19, 14], + "to": [16, 21, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15, 19, -1], + "to": [16, 21, 1], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, 1]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#s"} + } + }, + { + "from": [15.4, 0.25, 14.5], + "to": [15.65, 19.25, 15.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [15.4, 15.25, -0.5], + "to": [15.65, 19.25, 0.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + }, + { + "from": [15.4, 19.25, 0.5], + "to": [15.65, 20.25, 14.5], + "faces": { + "north": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 0, 0.25, 16], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 0.25, 1], "texture": "#s"}, + "down": {"uv": [0, 0, 0.25, 1], "texture": "#s"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 2, 1], + "scale": [0.2, 0.2, 0.2] + }, + "firstperson_righthand": { + "rotation": [-5, -8, 14], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, -45, 0], + "translation": [-0.25, 0, -3], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 90, 0], + "translation": [0, 0.25, -3.25], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + }, + { + "name": "step", + "origin": [8, 8, 8], + "color": 0, + "children": [6, 7, 8, 9, 10, 11] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [12, 13, 14] + }, + { + "name": "bar", + "origin": [15.40625, 8, 8], + "color": 0, + "children": [15, 16, 17] + }, + { + "name": "railing", + "origin": [8, 8, 8], + "color": 0, + "children": [18, 19, 20, 21, 22] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_top.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_top.json new file mode 100644 index 0000000..9997eb8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_catwalk_top.json @@ -0,0 +1,119 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "ambientocclusion": false, + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "s": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_side", + "t": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" + }, + "elements": [ + { + "from": [0, 14, 0], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, -0.25]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#s"} + } + }, + { + "from": [15, 14, 1], + "to": [16, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [15, 1, 16, 15], "texture": "#s"}, + "down": {"uv": [15, 1, 16, 15], "texture": "#s"} + } + }, + { + "from": [0, 14, 15], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -6.5, 14.75]}, + "faces": { + "north": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "east": {"uv": [0, 14, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 14, 16, 16], "texture": "#s"}, + "west": {"uv": [15, 14, 16, 16], "texture": "#s"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#s"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-7, -6.5, 0.75]}, + "faces": { + "east": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "west": {"uv": [1, 14, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 1, 15], "texture": "#s"} + } + }, + { + "from": [1, 16, 1], + "to": [15, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -6.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "texture": "#t"} + } + }, + { + "from": [1, 15, 1], + "to": [15, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [-6, -7.5, 0.75]}, + "faces": { + "up": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"}, + "down": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#t"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -2, 3], + "translation": [0.25, 1, 1.75], + "scale": [0.3, 0.3, 0.3] + }, + "firstperson_righthand": { + "rotation": [8, 0, 42], + "translation": [8.5, 0, -5.75], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.3, 0.3, 0.3] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0.25, 1.25, -3], + "scale": [0.6, 0.6, 0.6] + }, + "fixed": { + "rotation": [-90, 0, 0], + "translation": [0, 0, -4], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + { + "name": "VoxelShapes", + "origin": [8, 8, 8], + "color": 0, + "children": [] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_floor_grating.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_floor_grating.json new file mode 100644 index 0000000..da4aad3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_floor_grating.json @@ -0,0 +1,203 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_table_side_texture", + "s": "ariasessentials:block/engineersdecor/furniture/steel_table_side_texture", + "t": "ariasessentials:block/engineersdecor/furniture/steel_table_top_texture" + }, + "elements": [ + { + "from": [0, 0, 15], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#t"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#s"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 2, 1], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#t"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#s"} + } + }, + { + "from": [15, 0, 0.75], + "to": [16, 2, 15.25], + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0.75, 0, 15.25, 2], "texture": "#s"}, + "south": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [0.75, 0, 15.25, 2], "texture": "#s"}, + "up": {"uv": [15, 0.75, 16, 15.25], "texture": "#t"}, + "down": {"uv": [15, 0.75, 16, 15.25], "texture": "#s"} + } + }, + { + "from": [1, 1, 13.625], + "to": [15, 2, 14.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [1.625, 0.125, 2.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [13.625, 0.125, 14.375, 1], "texture": "#s"}, + "up": {"uv": [1, 13.625, 15, 14.375], "texture": "#t"}, + "down": {"uv": [1, 1.625, 15, 2.375], "texture": "#t"} + } + }, + { + "from": [1, 1, 12.125], + "to": [15, 2, 12.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [3.125, 0.125, 3.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [12.125, 0.125, 12.875, 1], "texture": "#s"}, + "up": {"uv": [1, 12.125, 15, 12.875], "texture": "#t"}, + "down": {"uv": [1, 3.125, 15, 3.875], "texture": "#t"} + } + }, + { + "from": [1, 1, 10.625], + "to": [15, 2, 11.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [4.625, 0.125, 5.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [10.625, 0.125, 11.375, 1], "texture": "#s"}, + "up": {"uv": [1, 10.625, 15, 11.375], "texture": "#t"}, + "down": {"uv": [1, 4.625, 15, 5.375], "texture": "#t"} + } + }, + { + "from": [1, 1, 9.125], + "to": [15, 2, 9.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [6.125, 0.125, 6.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [9.125, 0.125, 9.875, 1], "texture": "#s"}, + "up": {"uv": [1, 9.125, 15, 9.875], "texture": "#t"}, + "down": {"uv": [1, 6.125, 15, 6.875], "texture": "#t"} + } + }, + { + "from": [1, 1, 7.625], + "to": [15, 2, 8.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [7.625, 0.125, 8.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [7.625, 0.125, 8.375, 1], "texture": "#s"}, + "up": {"uv": [1, 7.625, 15, 8.375], "texture": "#t"}, + "down": {"uv": [1, 7.625, 15, 8.375], "texture": "#t"} + } + }, + { + "from": [1, 1, 6.125], + "to": [15, 2, 6.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [9.125, 0.125, 9.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [6.125, 0.125, 6.875, 1], "texture": "#s"}, + "up": {"uv": [1, 6.125, 15, 6.875], "texture": "#t"}, + "down": {"uv": [1, 9.125, 15, 9.875], "texture": "#t"} + } + }, + { + "from": [1, 1, 4.625], + "to": [15, 2, 5.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [10.625, 0.125, 11.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [4.625, 0.125, 5.375, 1], "texture": "#s"}, + "up": {"uv": [1, 4.625, 15, 5.375], "texture": "#t"}, + "down": {"uv": [1, 10.625, 15, 11.375], "texture": "#t"} + } + }, + { + "from": [1, 1, 3.125], + "to": [15, 2, 3.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [12.125, 0.125, 12.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [3.125, 0.125, 3.875, 1], "texture": "#s"}, + "up": {"uv": [1, 3.125, 15, 3.875], "texture": "#t"}, + "down": {"uv": [1, 12.125, 15, 12.875], "texture": "#t"} + } + }, + { + "from": [1, 1, 1.625], + "to": [15, 2, 2.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [13.625, 0.125, 14.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [1.625, 0.125, 2.375, 1], "texture": "#s"}, + "up": {"uv": [1, 1.625, 15, 2.375], "texture": "#t"}, + "down": {"uv": [1, 13.625, 15, 14.375], "texture": "#t"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 2, 15], + "faces": { + "north": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [1, 0, 15, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [1, 0, 15, 2], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 15], "texture": "#t"}, + "down": {"uv": [0, 1, 1, 15], "texture": "#s"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [66, 0, 0], + "translation": [0.25, 0, -2.75], + "scale": [0.3, 0.3, 0.3] + }, + "firstperson_righthand": { + "rotation": [-4, -1, 58], + "translation": [2.5, 0.25, 1.75], + "scale": [0.3, 0.3, 0.3] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.2, 0.2, 0.2] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, -2, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "rotation": [-90, 0, 1], + "translation": [0, 0.25, 3.25], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_floor_grating_top.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_floor_grating_top.json new file mode 100644 index 0000000..a1770bb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_floor_grating_top.json @@ -0,0 +1,224 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_table_side_texture", + "s": "ariasessentials:block/engineersdecor/furniture/steel_table_side_texture", + "t": "ariasessentials:block/engineersdecor/furniture/steel_table_top_texture" + }, + "elements": [ + { + "from": [0, 14, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#t"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#s"} + } + }, + { + "from": [0, 14, 0], + "to": [16, 16, 1], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#t"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#s"} + } + }, + { + "from": [15, 14, 0.75], + "to": [16, 16, 15.25], + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "east": {"uv": [0.75, 0, 15.25, 2], "texture": "#s"}, + "south": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [0.75, 0, 15.25, 2], "texture": "#s"}, + "up": {"uv": [15, 0.75, 16, 15.25], "texture": "#t"}, + "down": {"uv": [15, 0.75, 16, 15.25], "texture": "#s"} + } + }, + { + "from": [1, 15, 13.625], + "to": [15, 16, 14.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [1.625, 0.125, 2.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [13.625, 0.125, 14.375, 1], "texture": "#s"}, + "up": {"uv": [1, 13.625, 15, 14.375], "texture": "#t"}, + "down": {"uv": [1, 1.625, 15, 2.375], "texture": "#t"} + } + }, + { + "from": [1, 15, 12.125], + "to": [15, 16, 12.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [3.125, 0.125, 3.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [12.125, 0.125, 12.875, 1], "texture": "#s"}, + "up": {"uv": [1, 12.125, 15, 12.875], "texture": "#t"}, + "down": {"uv": [1, 3.125, 15, 3.875], "texture": "#t"} + } + }, + { + "from": [1, 15, 10.625], + "to": [15, 16, 11.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [4.625, 0.125, 5.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [10.625, 0.125, 11.375, 1], "texture": "#s"}, + "up": {"uv": [1, 10.625, 15, 11.375], "texture": "#t"}, + "down": {"uv": [1, 4.625, 15, 5.375], "texture": "#t"} + } + }, + { + "from": [1, 15, 9.125], + "to": [15, 16, 9.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [6.125, 0.125, 6.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [9.125, 0.125, 9.875, 1], "texture": "#s"}, + "up": {"uv": [1, 9.125, 15, 9.875], "texture": "#t"}, + "down": {"uv": [1, 6.125, 15, 6.875], "texture": "#t"} + } + }, + { + "from": [1, 15, 7.625], + "to": [15, 16, 8.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [7.625, 0.125, 8.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [7.625, 0.125, 8.375, 1], "texture": "#s"}, + "up": {"uv": [1, 7.625, 15, 8.375], "texture": "#t"}, + "down": {"uv": [1, 7.625, 15, 8.375], "texture": "#t"} + } + }, + { + "from": [1, 15, 6.125], + "to": [15, 16, 6.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [9.125, 0.125, 9.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [6.125, 0.125, 6.875, 1], "texture": "#s"}, + "up": {"uv": [1, 6.125, 15, 6.875], "texture": "#t"}, + "down": {"uv": [1, 9.125, 15, 9.875], "texture": "#t"} + } + }, + { + "from": [1, 15, 4.625], + "to": [15, 16, 5.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [10.625, 0.125, 11.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [4.625, 0.125, 5.375, 1], "texture": "#s"}, + "up": {"uv": [1, 4.625, 15, 5.375], "texture": "#t"}, + "down": {"uv": [1, 10.625, 15, 11.375], "texture": "#t"} + } + }, + { + "from": [1, 15, 3.125], + "to": [15, 16, 3.875], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [12.125, 0.125, 12.875, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [3.125, 0.125, 3.875, 1], "texture": "#s"}, + "up": {"uv": [1, 3.125, 15, 3.875], "texture": "#t"}, + "down": {"uv": [1, 12.125, 15, 12.875], "texture": "#t"} + } + }, + { + "from": [1, 15, 1.625], + "to": [15, 16, 2.375], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8.125, 8.375]}, + "faces": { + "north": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "east": {"uv": [13.625, 0.125, 14.375, 1], "texture": "#s"}, + "south": {"uv": [1, 0.125, 15, 1], "texture": "#s"}, + "west": {"uv": [1.625, 0.125, 2.375, 1], "texture": "#s"}, + "up": {"uv": [1, 1.625, 15, 2.375], "texture": "#t"}, + "down": {"uv": [1, 13.625, 15, 14.375], "texture": "#t"} + } + }, + { + "from": [0, 14, 1], + "to": [1, 16, 15], + "faces": { + "north": {"uv": [15, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [1, 0, 15, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#s"}, + "west": {"uv": [1, 0, 15, 2], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 15], "texture": "#t"}, + "down": {"uv": [0, 1, 1, 15], "texture": "#s"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [66, 0, 0], + "translation": [0.25, 0, -2.75], + "scale": [0.3, 0.3, 0.3] + }, + "firstperson_righthand": { + "rotation": [-4, -1, 58], + "translation": [2.5, 0.25, 1.75], + "scale": [0.3, 0.3, 0.3] + }, + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.2, 0.2, 0.2] + }, + "gui": { + "rotation": [30, 225, 0], + "translation": [0, -2, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "rotation": [-90, 0, 1], + "translation": [0, 0.25, 3.25], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + { + "name": "VoxelShapes", + "origin": [8, 8, 8], + "color": 0, + "children": [] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_railing.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_railing.json new file mode 100644 index 0000000..f8b6504 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_railing.json @@ -0,0 +1,86 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "ariasessentials:block/engineersdecor/material/steel_texture", + "particle": "ariasessentials:block/engineersdecor/material/steel_texture" + }, + "elements": [ + { + "from": [0.25, 15, 0.25], + "to": [15.75, 16, 1.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "east": {"uv": [15, 0, 16, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#0"} + } + }, + { + "from": [14.75, 0.25, 0.25], + "to": [15.75, 15, 1.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [0, 1, 1, 14], "texture": "#0"}, + "east": {"uv": [15, 1, 16, 14], "texture": "#0"}, + "south": {"uv": [15, 1, 16, 14], "texture": "#0"}, + "west": {"uv": [0, 1, 1, 14], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [1.25, 14.5, 0.25], + "to": [14.75, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 7, 0]}, + "faces": { + "north": {"uv": [1, 1, 15, 1.5], "texture": "#0"}, + "south": {"uv": [1, 1, 15, 1.5], "texture": "#0"}, + "up": {"uv": [1, 0.25, 15, 1], "texture": "#0"}, + "down": {"uv": [1, 15, 15, 15.75], "texture": "#0"} + } + }, + { + "from": [0.25, 0.25, 0.25], + "to": [1.25, 15, 1.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0.5]}, + "faces": { + "north": {"uv": [15, 1, 16, 14], "texture": "#0"}, + "east": {"uv": [15, 1, 16, 14], "texture": "#0"}, + "south": {"uv": [0, 1, 1, 14], "texture": "#0"}, + "west": {"uv": [0, 1, 1, 14], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + } + ], + "display": { + "ground": { + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [0, -36, 0], + "translation": [-4, -1, 0], + "scale": [0.72, 0.74, 1] + }, + "head": { + "translation": [0, 2.5, 7] + }, + "fixed": { + "translation": [0, -0.25, 7], + "scale": [0.8, 0.75, 1] + } + }, + "groups": [ + 0, + 1, + 2, + 3, + { + "name": "VoxelShapes", + "origin": [8, 8, 0.5], + "color": 0, + "children": [] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_table.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_table.json new file mode 100644 index 0000000..c57aa3e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/furniture/steel_table.json @@ -0,0 +1,386 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "render_type": "cutout", + "textures": { + "particle": "ariasessentials:block/engineersdecor/furniture/steel_table_side_texture", + "s": "ariasessentials:block/engineersdecor/furniture/steel_table_side_texture", + "t": "ariasessentials:block/engineersdecor/furniture/steel_table_top_texture" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [2, 14, 1], + "faces": { + "north": {"uv": [14, 2, 16, 16], "texture": "#s"}, + "east": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "south": {"uv": [0, 2, 2, 16], "texture": "#s"}, + "west": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "up": {"uv": [0, 0, 2, 1], "texture": "#s"}, + "down": {"uv": [0, 15, 2, 16], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [14, 0, 0], + "to": [16, 14, 1], + "faces": { + "north": {"uv": [0, 2, 2, 16], "texture": "#s"}, + "east": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "south": {"uv": [14, 2, 16, 16], "texture": "#s"}, + "west": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "up": {"uv": [14, 0, 16, 1], "texture": "#s"}, + "down": {"uv": [14, 15, 16, 16], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [14, 0, 15], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 2, 2, 16], "texture": "#s"}, + "east": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "south": {"uv": [14, 2, 16, 16], "texture": "#s"}, + "west": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "up": {"uv": [14, 15, 16, 16], "texture": "#s"}, + "down": {"uv": [14, 0, 16, 1], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [0, 0, 15], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [14, 2, 16, 16], "texture": "#s"}, + "east": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "south": {"uv": [0, 2, 2, 16], "texture": "#s"}, + "west": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "up": {"uv": [0, 15, 2, 16], "texture": "#s"}, + "down": {"uv": [0, 0, 2, 1], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [0, 0, 14], + "to": [1, 14, 15], + "faces": { + "north": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "east": {"uv": [1, 2, 2, 16], "texture": "#s"}, + "south": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "west": {"uv": [14, 2, 15, 16], "texture": "#s"}, + "up": {"uv": [0, 14, 1, 15], "texture": "#s"}, + "down": {"uv": [0, 1, 1, 2], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 14, 2], + "faces": { + "north": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "east": {"uv": [14, 2, 15, 16], "texture": "#s"}, + "south": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "west": {"uv": [1, 2, 2, 16], "texture": "#s"}, + "up": {"uv": [0, 1, 1, 2], "texture": "#s"}, + "down": {"uv": [0, 14, 1, 15], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [15, 0, 1], + "to": [16, 14, 2], + "faces": { + "north": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "east": {"uv": [14, 2, 15, 16], "texture": "#s"}, + "south": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "west": {"uv": [1, 2, 2, 16], "texture": "#s"}, + "up": {"uv": [15, 1, 16, 2], "texture": "#s"}, + "down": {"uv": [15, 14, 16, 15], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [15, 0, 14], + "to": [16, 14, 15], + "faces": { + "north": {"uv": [0, 2, 1, 16], "texture": "#s"}, + "east": {"uv": [1, 2, 2, 16], "texture": "#s"}, + "south": {"uv": [15, 2, 16, 16], "texture": "#s"}, + "west": {"uv": [14, 2, 15, 16], "texture": "#s"}, + "up": {"uv": [15, 14, 16, 15], "texture": "#s"}, + "down": {"uv": [15, 1, 16, 2], "texture": "#s", "cullface": "down"} + } + }, + { + "from": [0, 14, 14], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [14, 0, 16, 2], "texture": "#s"}, + "up": {"uv": [0, 14, 16, 16], "texture": "#t"}, + "down": {"uv": [0, 0, 16, 2], "texture": "#s"} + } + }, + { + "from": [0, 14, 0], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [14, 0, 16, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "up": {"uv": [0, 0, 16, 2], "texture": "#t"}, + "down": {"uv": [0, 14, 16, 16], "texture": "#s"} + } + }, + { + "from": [14, 14, 2], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "east": {"uv": [2, 0, 14, 2], "texture": "#s"}, + "south": {"uv": [14, 0, 16, 2], "texture": "#s"}, + "west": {"uv": [2, 0, 14, 2], "texture": "#s"}, + "up": {"uv": [14, 2, 16, 14], "texture": "#t"}, + "down": {"uv": [14, 2, 16, 14], "texture": "#s"} + } + }, + { + "from": [2, 15.5, 12.75], + "to": [14, 16, 13.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [2.75, 0, 3.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [12.75, 0, 13.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 12.75, 14, 13.25], "texture": "#t"}, + "down": {"uv": [2, 2.75, 14, 3.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 13.75], + "to": [14, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [2, 0, 2.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [13.75, 0, 14, 0.5], "texture": "#s"}, + "up": {"uv": [2, 13.75, 14, 14], "texture": "#t"}, + "down": {"uv": [2, 2, 14, 2.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 11.75], + "to": [14, 16, 12.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [3.75, 0, 4.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [11.75, 0, 12.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 11.75, 14, 12.25], "texture": "#t"}, + "down": {"uv": [2, 3.75, 14, 4.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 10.75], + "to": [14, 16, 11.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [4.75, 0, 5.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [10.75, 0, 11.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 10.75, 14, 11.25], "texture": "#t"}, + "down": {"uv": [2, 4.75, 14, 5.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 9.75], + "to": [14, 16, 10.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [5.75, 0, 6.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [9.75, 0, 10.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 9.75, 14, 10.25], "texture": "#t"}, + "down": {"uv": [2, 5.75, 14, 6.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 8.75], + "to": [14, 16, 9.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [6.75, 0, 7.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [8.75, 0, 9.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 8.75, 14, 9.25], "texture": "#t"}, + "down": {"uv": [2, 6.75, 14, 7.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 7.75], + "to": [14, 16, 8.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [7.75, 0, 8.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [7.75, 0, 8.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 7.75, 14, 8.25], "texture": "#t"}, + "down": {"uv": [2, 7.75, 14, 8.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 6.75], + "to": [14, 16, 7.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [8.75, 0, 9.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [6.75, 0, 7.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 6.75, 14, 7.25], "texture": "#t"}, + "down": {"uv": [2, 8.75, 14, 9.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 5.75], + "to": [14, 16, 6.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [9.75, 0, 10.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [5.75, 0, 6.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 5.75, 14, 6.25], "texture": "#t"}, + "down": {"uv": [2, 9.75, 14, 10.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 4.75], + "to": [14, 16, 5.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [10.75, 0, 11.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [4.75, 0, 5.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 4.75, 14, 5.25], "texture": "#t"}, + "down": {"uv": [2, 10.75, 14, 11.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 3.75], + "to": [14, 16, 4.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [11.75, 0, 12.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [3.75, 0, 4.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 3.75, 14, 4.25], "texture": "#t"}, + "down": {"uv": [2, 11.75, 14, 12.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 2.75], + "to": [14, 16, 3.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [12.75, 0, 13.25, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [2.75, 0, 3.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 2.75, 14, 3.25], "texture": "#t"}, + "down": {"uv": [2, 12.75, 14, 13.25], "texture": "#t"} + } + }, + { + "from": [2, 15.5, 2], + "to": [14, 16, 2.25], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8.25]}, + "faces": { + "north": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "east": {"uv": [13.75, 0, 14, 0.5], "texture": "#s"}, + "south": {"uv": [2, 0, 14, 0.5], "texture": "#s"}, + "west": {"uv": [2, 0, 2.25, 0.5], "texture": "#s"}, + "up": {"uv": [2, 2, 14, 2.25], "texture": "#t"}, + "down": {"uv": [2, 13.75, 14, 14], "texture": "#t"} + } + }, + { + "from": [0, 14, 2], + "to": [2, 16, 14], + "faces": { + "north": {"uv": [14, 0, 16, 2], "texture": "#s"}, + "east": {"uv": [2, 0, 14, 2], "texture": "#s"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#s"}, + "west": {"uv": [2, 0, 14, 2], "texture": "#s"}, + "up": {"uv": [0, 2, 2, 14], "texture": "#t"}, + "down": {"uv": [0, 2, 2, 14], "texture": "#s"} + } + }, + { + "from": [14, 13.5, 14], + "to": [15, 14, 15], + "faces": { + "north": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "east": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "south": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "west": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "up": {"uv": [14, 14, 15, 15], "texture": "#s"}, + "down": {"uv": [14, 1, 15, 2], "texture": "#s"} + } + }, + { + "from": [1, 13.5, 14], + "to": [2, 14, 15], + "faces": { + "north": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "east": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "south": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "west": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "up": {"uv": [1, 14, 2, 15], "texture": "#s"}, + "down": {"uv": [1, 1, 2, 2], "texture": "#s"} + } + }, + { + "from": [14, 13.5, 1], + "to": [15, 14, 2], + "faces": { + "north": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "east": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "south": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "west": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "up": {"uv": [14, 1, 15, 2], "texture": "#s"}, + "down": {"uv": [14, 14, 15, 15], "texture": "#s"} + } + }, + { + "from": [1, 13.5, 1], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "east": {"uv": [14, 2, 15, 2.5], "texture": "#s"}, + "south": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "west": {"uv": [1, 2, 2, 2.5], "texture": "#s"}, + "up": {"uv": [1, 1, 2, 2], "texture": "#s"}, + "down": {"uv": [1, 14, 2, 15], "texture": "#s"} + } + } + ], + "display": { + "ground": { + "translation": [0, 1.75, 0], + "scale": [0.2, 0.2, 0.2] + }, + "gui": { + "rotation": [30, 225, 0], + "scale": [0.625, 0.625, 0.625] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/engineersdecor/steel_catwalk_block.json b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/steel_catwalk_block.json new file mode 100644 index 0000000..a518442 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/engineersdecor/steel_catwalk_block.json @@ -0,0 +1,345 @@ +{ + "credit": "Made with Blockbench", + "render_type": "cutout", + "textures": { + "0": "ariasessentials:block/engineersdecor/material/steel_texture", + "1": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top", + "particle": "ariasessentials:block/engineersdecor/material/steel_texture" + }, + "elements": [ + { + "from": [1, 0.75, 1], + "to": [15, 0.75, 15], + "faces": { + "down": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [1, 0.25, 1], + "to": [15, 0.25, 15], + "faces": { + "down": {"uv": [1, 1, 15, 15], "texture": "#1"} + } + }, + { + "from": [0, 0, 1], + "to": [1, 1, 15], + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 14, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 14, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 14, 1], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 14, 1], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 1, 1], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 15], + "to": [16, 1, 16], + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0"} + } + }, + { + "from": [15, 0, 1], + "to": [16, 1, 15], + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 14, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 14, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 14, 1], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 14, 1], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [1, 15.25, 1], + "to": [15, 15.25, 15], + "faces": { + "up": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [1, 15.75, 1], + "to": [15, 15.75, 15], + "faces": { + "up": {"uv": [1, 1, 15, 15], "texture": "#1"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 16, 15], + "faces": { + "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 0, 14, 2], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 14, 2], "rotation": 180, "texture": "#0"}, + "up": {"uv": [0, 0, 14, 1], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 14, 1], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [0, 15, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 2], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 16, 2], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0"} + } + }, + { + "from": [0, 15, 0], + "to": [16, 16, 1], + "faces": { + "north": {"uv": [0, 0, 16, 2], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 16, 2], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0"} + } + }, + { + "from": [15, 15, 1], + "to": [16, 16, 15], + "faces": { + "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 0, 14, 2], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 14, 2], "rotation": 180, "texture": "#0"}, + "up": {"uv": [0, 0, 14, 1], "rotation": 90, "texture": "#0"}, + "down": {"uv": [0, 0, 14, 1], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [1, 1, 15.25], + "to": [15, 15, 15.25], + "faces": { + "south": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [1, 1, 15.75], + "to": [15, 15, 15.75], + "faces": { + "south": {"uv": [1, 1, 15, 15], "texture": "#1"} + } + }, + { + "from": [0, 1, 15], + "to": [1, 15, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 0, 12, 2], "rotation": 90, "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 12, 2], "rotation": 270, "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 1, 15], + "to": [16, 15, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 0, 12, 2], "rotation": 90, "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 12, 2], "rotation": 270, "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [1, 1, 0.75], + "to": [15, 15, 0.75], + "faces": { + "north": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [1, 1, 0.25], + "to": [15, 15, 0.25], + "faces": { + "north": {"uv": [1, 1, 15, 15], "texture": "#1"} + } + }, + { + "from": [15, 1, 0], + "to": [16, 15, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 0, 12, 2], "rotation": 270, "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 12, 2], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#0"} + } + }, + { + "from": [0, 1, 0], + "to": [1, 15, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "east": {"uv": [0, 0, 12, 2], "rotation": 270, "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 12, 2], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 2], "texture": "#0"} + } + }, + { + "from": [15.25, 1, 1], + "to": [15.25, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]}, + "faces": { + "east": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [15.75, 1, 1], + "to": [15.75, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]}, + "faces": { + "east": {"uv": [1, 1, 15, 15], "texture": "#1"} + } + }, + { + "from": [0.75, 1, 1], + "to": [0.75, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]}, + "faces": { + "west": {"uv": [1, 1, 15, 15], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [0.25, 1, 1], + "to": [0.25, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]}, + "faces": { + "west": {"uv": [1, 1, 15, 15], "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [50, 0, 46], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "Side", + "origin": [0, 0, 0], + "color": 0, + "children": [ + { + "name": "Grating", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1] + }, + 2, + 3, + 4, + 5 + ] + }, + { + "name": "Side", + "origin": [0, 0, 0], + "color": 0, + "children": [ + { + "name": "Grating", + "origin": [0, 0, 0], + "color": 0, + "children": [6, 7] + }, + 8, + 9, + 10, + 11 + ] + }, + { + "name": "Side", + "origin": [0, 0, 0], + "color": 0, + "children": [ + { + "name": "Grating", + "origin": [0, 0, 0], + "color": 0, + "children": [12, 13] + }, + 14, + 15 + ] + }, + { + "name": "Side", + "origin": [0, 0, 0], + "color": 0, + "children": [ + { + "name": "Grating", + "origin": [0, 0, 0], + "color": 0, + "children": [16, 17] + }, + 18, + 19 + ] + }, + { + "name": "Grating", + "origin": [0, 0, 0], + "color": 0, + "children": [20, 21] + }, + { + "name": "Grating", + "origin": [0, 0, 0], + "color": 0, + "children": [22, 23] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/eternium_block.json b/src/old/resources/assets/ariasessentials/models/block/eternium_block.json new file mode 100644 index 0000000..ec2aeb6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/eternium_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/eternium_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/eternium_ore_block.json b/src/old/resources/assets/ariasessentials/models/block/eternium_ore_block.json new file mode 100644 index 0000000..4d4e3fe --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/eternium_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/eternium_ore_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/fb/cube.json b/src/old/resources/assets/ariasessentials/models/block/fb/cube.json new file mode 100644 index 0000000..c3d3147 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/fb/cube.json @@ -0,0 +1,11 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "north": "#all", + "south": "#all", + "west": "#all", + "east": "#all", + "up": "#all", + "down": "#all" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/fb/fullbright.json b/src/old/resources/assets/ariasessentials/models/block/fb/fullbright.json new file mode 100644 index 0000000..a86d0c7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/fb/fullbright.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "ambientocclusion" : false, + "textures": { + "particle": "#up" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "shade": false, + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/fb/rotatable.json b/src/old/resources/assets/ariasessentials/models/block/fb/rotatable.json new file mode 100644 index 0000000..907f570 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/fb/rotatable.json @@ -0,0 +1,12 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/fb/sided.json b/src/old/resources/assets/ariasessentials/models/block/fb/sided.json new file mode 100644 index 0000000..52fda95 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/fb/sided.json @@ -0,0 +1,12 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "particle": "#side", + "down": "#top", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/fb/top.json b/src/old/resources/assets/ariasessentials/models/block/fb/top.json new file mode 100644 index 0000000..902d85d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/fb/top.json @@ -0,0 +1,11 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "north": "#side", + "south": "#side", + "west": "#side", + "east": "#side", + "up": "#top", + "down": "#side" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/filthy_blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/filthy_blue_pool_tile_light.json new file mode 100644 index 0000000..e8a50f1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/filthy_blue_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_blue_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/filthy_cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/filthy_cyan_pool_tile_light.json new file mode 100644 index 0000000..6912f5c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/filthy_cyan_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_cyan_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/filthy_green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/filthy_green_pool_tile_light.json new file mode 100644 index 0000000..0ebbf0b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/filthy_green_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_green_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/filthy_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/filthy_pool_tile_light.json new file mode 100644 index 0000000..827d2a9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/filthy_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/filthy_red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/filthy_red_pool_tile_light.json new file mode 100644 index 0000000..87b905c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/filthy_red_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_red_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile.json new file mode 100644 index 0000000..a3f17f1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_light.json new file mode 100644 index 0000000..7c7f2d3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/green_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json new file mode 100644 index 0000000..9451373 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json new file mode 100644 index 0000000..f28596f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json new file mode 100644 index 0000000..c9378c7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json new file mode 100644 index 0000000..9d8df48 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json new file mode 100644 index 0000000..2bd2431 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json new file mode 100644 index 0000000..6b9ffba --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json new file mode 100644 index 0000000..4fc4b1b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json new file mode 100644 index 0000000..63b766d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..90af621 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/item_scrubber.json b/src/old/resources/assets/ariasessentials/models/block/item_scrubber.json new file mode 100644 index 0000000..8907215 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/item_scrubber.json @@ -0,0 +1,274 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "texture_size": [64, 64], + "textures": { + "0": "ariasessentials:block/scrubber/scrubber_top", + "1": "ariasessentials:block/scrubber/scrubber_old_internal_cube", + "particle": "ariasessentials:block/scrubber/scrubber_old_internal_cube" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [2, 2, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 0, 14], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 14, 0], + "to": [2, 16, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 14, 14], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 2, 0], + "to": [1, 14, 1], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 2, 15], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 2], + "to": [1, 1, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "texture": "#0"} + } + }, + { + "from": [0, 15, 2], + "to": [1, 16, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "texture": "#0"} + } + }, + { + "from": [14, 0, 14], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 0, 0], + "to": [16, 2, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 14, 14], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 14, 0], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 2, 15], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 0, 15], + "to": [14, 1, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 15, 15], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 15, 0], + "to": [14, 16, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 0, 0], + "to": [14, 1, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 2, 0], + "to": [16, 14, 1], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 0, 2], + "to": [16, 1, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 15, 2], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "internal", + "from": [2, 2, 2], + "to": [14, 14, 14], + "faces": { + "north": {"uv": [0, 0, 3, 3], "texture": "#1"}, + "east": {"uv": [0, 3, 3, 6], "texture": "#1"}, + "south": {"uv": [3, 0, 6, 3], "texture": "#1"}, + "west": {"uv": [3, 3, 6, 6], "texture": "#1"}, + "up": {"uv": [3, 9, 0, 6], "texture": "#1"}, + "down": {"uv": [9, 0, 6, 3], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "scrubber", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19] + }, + 20 + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/item_scrubber.json.old b/src/old/resources/assets/ariasessentials/models/block/item_scrubber.json.old new file mode 100644 index 0000000..39edd04 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/item_scrubber.json.old @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "ariasessentials:block/scrubber/scrubber_bottom", + "up": "ariasessentials:block/scrubber/scrubber_top", + "south": "ariasessentials:block/scrubber/scrubber_front", + "west": "ariasessentials:block/scrubber/scrubber_left", + "north": "ariasessentials:block/scrubber/scrubber_back", + "east": "ariasessentials:block/scrubber/scrubber_right" + } + } + \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json b/src/old/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json new file mode 100644 index 0000000..62e220a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/layered_compressed_obsidian_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/magical_scrubber.json b/src/old/resources/assets/ariasessentials/models/block/magical_scrubber.json new file mode 100644 index 0000000..8b0b0bb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/magical_scrubber.json @@ -0,0 +1,1489 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "texture_size": [32, 32], + "textures": { + "0": "ariasessentials:block/scrubber/center_cube", + "1": "ariasessentials:block/scrubber/frame_bars", + "2": "ariasessentials:block/scrubber/inner_corner_cubes", + "3": "ariasessentials:block/scrubber/corner_cube", + "particle": "ariasessentials:block/scrubber/center_cube" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [1, 1, 3], + "faces": { + "north": {"uv": [1.5, 0.5, 2, 1], "texture": "#3"}, + "east": {"uv": [0, 0, 1.5, 0.5], "texture": "#3"}, + "south": {"uv": [2, 0.5, 2.5, 1], "texture": "#3"}, + "west": {"uv": [0, 0.5, 1.5, 1], "texture": "#3"}, + "up": {"uv": [0.5, 2.5, 0, 1], "texture": "#3"}, + "down": {"uv": [1, 1, 0.5, 2.5], "texture": "#3"} + } + }, + { + "from": [2, 0, 0], + "to": [3, 1, 3], + "faces": { + "north": {"uv": [3.5, 1, 4, 1.5], "texture": "#3"}, + "east": {"uv": [1, 1, 2.5, 1.5], "texture": "#3"}, + "south": {"uv": [3.5, 1.5, 4, 2], "texture": "#3"}, + "west": {"uv": [1.5, 0, 3, 0.5], "texture": "#3"}, + "up": {"uv": [1.5, 3, 1, 1.5], "texture": "#3"}, + "down": {"uv": [2, 1.5, 1.5, 3], "texture": "#3"} + } + }, + { + "from": [1, 0, 0], + "to": [2, 1, 1], + "faces": { + "north": {"uv": [2, 3.5, 2.5, 4], "texture": "#3"}, + "east": {"uv": [3.5, 2, 4, 2.5], "texture": "#3"}, + "south": {"uv": [2.5, 3.5, 3, 4], "texture": "#3"}, + "west": {"uv": [3.5, 2.5, 4, 3], "texture": "#3"}, + "up": {"uv": [4, 3.5, 3.5, 3], "texture": "#3"}, + "down": {"uv": [4, 3.5, 3.5, 4], "texture": "#3"} + } + }, + { + "from": [1, 0, 2], + "to": [2, 1, 3], + "faces": { + "north": {"uv": [4, 0, 4.5, 0.5], "texture": "#3"}, + "east": {"uv": [4, 0.5, 4.5, 1], "texture": "#3"}, + "south": {"uv": [1, 4, 1.5, 4.5], "texture": "#3"}, + "west": {"uv": [4, 1, 4.5, 1.5], "texture": "#3"}, + "up": {"uv": [2, 4.5, 1.5, 4], "texture": "#3"}, + "down": {"uv": [4.5, 1.5, 4, 2], "texture": "#3"} + } + }, + { + "from": [2, 1, 0], + "to": [3, 3, 1], + "faces": { + "north": {"uv": [2, 1.5, 2.5, 2.5], "texture": "#3"}, + "east": {"uv": [0, 2.5, 0.5, 3.5], "texture": "#3"}, + "south": {"uv": [0.5, 2.5, 1, 3.5], "texture": "#3"}, + "west": {"uv": [2.5, 0.5, 3, 1.5], "texture": "#3"}, + "up": {"uv": [2.5, 4.5, 2, 4], "texture": "#3"}, + "down": {"uv": [4.5, 2, 4, 2.5], "texture": "#3"} + } + }, + { + "from": [1, 2, 0], + "to": [2, 3, 1], + "faces": { + "north": {"uv": [2.5, 4, 3, 4.5], "texture": "#3"}, + "east": {"uv": [4, 2.5, 4.5, 3], "texture": "#3"}, + "south": {"uv": [3, 4, 3.5, 4.5], "texture": "#3"}, + "west": {"uv": [4, 3, 4.5, 3.5], "texture": "#3"}, + "up": {"uv": [4, 4.5, 3.5, 4], "texture": "#3"}, + "down": {"uv": [4.5, 3.5, 4, 4], "texture": "#3"} + } + }, + { + "from": [0, 1, 0], + "to": [1, 3, 1], + "faces": { + "north": {"uv": [2.5, 1.5, 3, 2.5], "texture": "#3"}, + "east": {"uv": [2, 2.5, 2.5, 3.5], "texture": "#3"}, + "south": {"uv": [2.5, 2.5, 3, 3.5], "texture": "#3"}, + "west": {"uv": [3, 0, 3.5, 1], "texture": "#3"}, + "up": {"uv": [4.5, 4.5, 4, 4], "texture": "#3"}, + "down": {"uv": [0.5, 4.5, 0, 5], "texture": "#3"} + } + }, + { + "from": [0, 1, 2], + "to": [1, 3, 3], + "faces": { + "north": {"uv": [1, 3, 1.5, 4], "texture": "#3"}, + "east": {"uv": [3, 1, 3.5, 2], "texture": "#3"}, + "south": {"uv": [1.5, 3, 2, 4], "texture": "#3"}, + "west": {"uv": [3, 2, 3.5, 3], "texture": "#3"}, + "up": {"uv": [5, 0.5, 4.5, 0], "texture": "#3"}, + "down": {"uv": [1, 4.5, 0.5, 5], "texture": "#3"} + } + }, + { + "from": [1, 2, 2], + "to": [2, 3, 3], + "faces": { + "north": {"uv": [4.5, 0.5, 5, 1], "texture": "#3"}, + "east": {"uv": [1, 4.5, 1.5, 5], "texture": "#3"}, + "south": {"uv": [4.5, 1, 5, 1.5], "texture": "#3"}, + "west": {"uv": [1.5, 4.5, 2, 5], "texture": "#3"}, + "up": {"uv": [5, 2, 4.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 4.5, 2, 5], "texture": "#3"} + } + }, + { + "from": [2, 2, 1], + "to": [3, 3, 2], + "faces": { + "north": {"uv": [4.5, 2, 5, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 4.5, 3, 5], "texture": "#3"}, + "south": {"uv": [4.5, 2.5, 5, 3], "texture": "#3"}, + "west": {"uv": [3, 4.5, 3.5, 5], "texture": "#3"}, + "up": {"uv": [5, 3.5, 4.5, 3], "texture": "#3"}, + "down": {"uv": [4, 4.5, 3.5, 5], "texture": "#3"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "faces": { + "north": {"uv": [4.5, 3.5, 5, 4], "texture": "#3"}, + "east": {"uv": [4, 4.5, 4.5, 5], "texture": "#3"}, + "south": {"uv": [4.5, 4, 5, 4.5], "texture": "#3"}, + "west": {"uv": [4.5, 4.5, 5, 5], "texture": "#3"}, + "up": {"uv": [0.5, 5.5, 0, 5], "texture": "#3"}, + "down": {"uv": [5.5, 0, 5, 0.5], "texture": "#3"} + } + }, + { + "from": [2, 1, 2], + "to": [3, 3, 3], + "faces": { + "north": {"uv": [3, 3, 3.5, 4], "texture": "#3"}, + "east": {"uv": [0, 3.5, 0.5, 4.5], "texture": "#3"}, + "south": {"uv": [3.5, 0, 4, 1], "texture": "#3"}, + "west": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#3"}, + "up": {"uv": [1, 5.5, 0.5, 5], "texture": "#3"}, + "down": {"uv": [5.5, 0.5, 5, 1], "texture": "#3"} + } + }, + { + "from": [0, 0, 13], + "to": [1, 1, 16], + "faces": { + "north": {"uv": [5.5, 2.5, 6, 3], "texture": "#3"}, + "east": {"uv": [1, 5, 2.5, 5.5], "texture": "#3"}, + "south": {"uv": [6, 2.5, 6.5, 3], "texture": "#3"}, + "west": {"uv": [5, 1, 6.5, 1.5], "texture": "#3"}, + "up": {"uv": [5.5, 3, 5, 1.5], "texture": "#3"}, + "down": {"uv": [3, 5, 2.5, 6.5], "texture": "#3"} + } + }, + { + "from": [2, 0, 13], + "to": [3, 1, 16], + "faces": { + "north": {"uv": [6, 3.5, 6.5, 4], "texture": "#3"}, + "east": {"uv": [3, 5, 4.5, 5.5], "texture": "#3"}, + "south": {"uv": [6, 4, 6.5, 4.5], "texture": "#3"}, + "west": {"uv": [5, 3, 6.5, 3.5], "texture": "#3"}, + "up": {"uv": [5.5, 5, 5, 3.5], "texture": "#3"}, + "down": {"uv": [5, 5, 4.5, 6.5], "texture": "#3"} + } + }, + { + "from": [1, 0, 13], + "to": [2, 1, 14], + "faces": { + "north": {"uv": [6, 4.5, 6.5, 5], "texture": "#3"}, + "east": {"uv": [5, 6, 5.5, 6.5], "texture": "#3"}, + "south": {"uv": [6, 5, 6.5, 5.5], "texture": "#3"}, + "west": {"uv": [6, 5.5, 6.5, 6], "texture": "#3"}, + "up": {"uv": [6.5, 6.5, 6, 6], "texture": "#3"}, + "down": {"uv": [0.5, 6.5, 0, 7], "texture": "#3"} + } + }, + { + "from": [1, 0, 15], + "to": [2, 1, 16], + "faces": { + "north": {"uv": [6.5, 0, 7, 0.5], "texture": "#3"}, + "east": {"uv": [0.5, 6.5, 1, 7], "texture": "#3"}, + "south": {"uv": [6.5, 0.5, 7, 1], "texture": "#3"}, + "west": {"uv": [1, 6.5, 1.5, 7], "texture": "#3"}, + "up": {"uv": [7, 1.5, 6.5, 1], "texture": "#3"}, + "down": {"uv": [2, 6.5, 1.5, 7], "texture": "#3"} + } + }, + { + "from": [2, 1, 13], + "to": [3, 3, 14], + "faces": { + "north": {"uv": [5, 5, 5.5, 6], "texture": "#3"}, + "east": {"uv": [0, 5.5, 0.5, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 0, 6, 1], "texture": "#3"}, + "west": {"uv": [0.5, 5.5, 1, 6.5], "texture": "#3"}, + "up": {"uv": [7, 2, 6.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 6.5, 2, 7], "texture": "#3"} + } + }, + { + "from": [1, 2, 13], + "to": [2, 3, 14], + "faces": { + "north": {"uv": [6.5, 2, 7, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 6.5, 3, 7], "texture": "#3"}, + "south": {"uv": [6.5, 2.5, 7, 3], "texture": "#3"}, + "west": {"uv": [3, 6.5, 3.5, 7], "texture": "#3"}, + "up": {"uv": [7, 3.5, 6.5, 3], "texture": "#3"}, + "down": {"uv": [4, 6.5, 3.5, 7], "texture": "#3"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 3, 14], + "faces": { + "north": {"uv": [1, 5.5, 1.5, 6.5], "texture": "#3"}, + "east": {"uv": [1.5, 5.5, 2, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 1.5, 6, 2.5], "texture": "#3"}, + "west": {"uv": [2, 5.5, 2.5, 6.5], "texture": "#3"}, + "up": {"uv": [7, 4, 6.5, 3.5], "texture": "#3"}, + "down": {"uv": [4.5, 6.5, 4, 7], "texture": "#3"} + } + }, + { + "from": [0, 1, 15], + "to": [1, 3, 16], + "faces": { + "north": {"uv": [3, 5.5, 3.5, 6.5], "texture": "#3"}, + "east": {"uv": [3.5, 5.5, 4, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 3.5, 6, 4.5], "texture": "#3"}, + "west": {"uv": [4, 5.5, 4.5, 6.5], "texture": "#3"}, + "up": {"uv": [7, 4.5, 6.5, 4], "texture": "#3"}, + "down": {"uv": [5, 6.5, 4.5, 7], "texture": "#3"} + } + }, + { + "from": [1, 2, 15], + "to": [2, 3, 16], + "faces": { + "north": {"uv": [6.5, 4.5, 7, 5], "texture": "#3"}, + "east": {"uv": [5, 6.5, 5.5, 7], "texture": "#3"}, + "south": {"uv": [6.5, 5, 7, 5.5], "texture": "#3"}, + "west": {"uv": [5.5, 6.5, 6, 7], "texture": "#3"}, + "up": {"uv": [7, 6, 6.5, 5.5], "texture": "#3"}, + "down": {"uv": [6.5, 6.5, 6, 7], "texture": "#3"} + } + }, + { + "from": [2, 2, 14], + "to": [3, 3, 15], + "faces": { + "north": {"uv": [6.5, 6, 7, 6.5], "texture": "#3"}, + "east": {"uv": [6.5, 6.5, 7, 7], "texture": "#3"}, + "south": {"uv": [0, 7, 0.5, 7.5], "texture": "#3"}, + "west": {"uv": [7, 0, 7.5, 0.5], "texture": "#3"}, + "up": {"uv": [1, 7.5, 0.5, 7], "texture": "#3"}, + "down": {"uv": [7.5, 0.5, 7, 1], "texture": "#3"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "faces": { + "north": {"uv": [1, 7, 1.5, 7.5], "texture": "#3"}, + "east": {"uv": [7, 1, 7.5, 1.5], "texture": "#3"}, + "south": {"uv": [1.5, 7, 2, 7.5], "texture": "#3"}, + "west": {"uv": [7, 1.5, 7.5, 2], "texture": "#3"}, + "up": {"uv": [2.5, 7.5, 2, 7], "texture": "#3"}, + "down": {"uv": [7.5, 2, 7, 2.5], "texture": "#3"} + } + }, + { + "from": [2, 1, 15], + "to": [3, 3, 16], + "faces": { + "north": {"uv": [5.5, 4.5, 6, 5.5], "texture": "#3"}, + "east": {"uv": [5.5, 5.5, 6, 6.5], "texture": "#3"}, + "south": {"uv": [6, 0, 6.5, 1], "texture": "#3"}, + "west": {"uv": [6, 1.5, 6.5, 2.5], "texture": "#3"}, + "up": {"uv": [3, 7.5, 2.5, 7], "texture": "#3"}, + "down": {"uv": [7.5, 2.5, 7, 3], "texture": "#3"} + } + }, + { + "from": [13, 0, 13], + "to": [14, 1, 16], + "faces": { + "north": {"uv": [7.5, 4.5, 8, 5], "texture": "#3"}, + "east": {"uv": [3, 7, 4.5, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 5.5, 8, 6], "texture": "#3"}, + "west": {"uv": [7, 3, 8.5, 3.5], "texture": "#3"}, + "up": {"uv": [7.5, 5, 7, 3.5], "texture": "#3"}, + "down": {"uv": [5, 7, 4.5, 8.5], "texture": "#3"} + } + }, + { + "from": [15, 0, 13], + "to": [16, 1, 16], + "faces": { + "north": {"uv": [6, 7.5, 6.5, 8], "texture": "#3"}, + "east": {"uv": [5, 7, 6.5, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 6, 8, 6.5], "texture": "#3"}, + "west": {"uv": [7, 5, 8.5, 5.5], "texture": "#3"}, + "up": {"uv": [7.5, 7, 7, 5.5], "texture": "#3"}, + "down": {"uv": [7, 7, 6.5, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 13], + "to": [15, 1, 14], + "faces": { + "north": {"uv": [7.5, 6.5, 8, 7], "texture": "#3"}, + "east": {"uv": [7.5, 7, 8, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 7.5, 8, 8], "texture": "#3"}, + "west": {"uv": [8, 0, 8.5, 0.5], "texture": "#3"}, + "up": {"uv": [8.5, 1, 8, 0.5], "texture": "#3"}, + "down": {"uv": [8.5, 1, 8, 1.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 15], + "to": [15, 1, 16], + "faces": { + "north": {"uv": [8, 1.5, 8.5, 2], "texture": "#3"}, + "east": {"uv": [8, 2, 8.5, 2.5], "texture": "#3"}, + "south": {"uv": [8, 2.5, 8.5, 3], "texture": "#3"}, + "west": {"uv": [8, 3.5, 8.5, 4], "texture": "#3"}, + "up": {"uv": [8.5, 4.5, 8, 4], "texture": "#3"}, + "down": {"uv": [8.5, 4.5, 8, 5], "texture": "#3"} + } + }, + { + "from": [15, 1, 13], + "to": [16, 3, 14], + "faces": { + "north": {"uv": [7, 7, 7.5, 8], "texture": "#3"}, + "east": {"uv": [0, 7.5, 0.5, 8.5], "texture": "#3"}, + "south": {"uv": [7.5, 0, 8, 1], "texture": "#3"}, + "west": {"uv": [0.5, 7.5, 1, 8.5], "texture": "#3"}, + "up": {"uv": [8.5, 6, 8, 5.5], "texture": "#3"}, + "down": {"uv": [6.5, 8, 6, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 2, 13], + "to": [15, 3, 14], + "faces": { + "north": {"uv": [8, 6, 8.5, 6.5], "texture": "#3"}, + "east": {"uv": [8, 6.5, 8.5, 7], "texture": "#3"}, + "south": {"uv": [7, 8, 7.5, 8.5], "texture": "#3"}, + "west": {"uv": [8, 7, 8.5, 7.5], "texture": "#3"}, + "up": {"uv": [8, 8.5, 7.5, 8], "texture": "#3"}, + "down": {"uv": [8.5, 7.5, 8, 8], "texture": "#3"} + } + }, + { + "from": [13, 1, 13], + "to": [14, 3, 14], + "faces": { + "north": {"uv": [1, 7.5, 1.5, 8.5], "texture": "#3"}, + "east": {"uv": [7.5, 1, 8, 2], "texture": "#3"}, + "south": {"uv": [1.5, 7.5, 2, 8.5], "texture": "#3"}, + "west": {"uv": [2, 7.5, 2.5, 8.5], "texture": "#3"}, + "up": {"uv": [8.5, 8.5, 8, 8], "texture": "#3"}, + "down": {"uv": [0.5, 8.5, 0, 9], "texture": "#3"} + } + }, + { + "from": [13, 1, 15], + "to": [14, 3, 16], + "faces": { + "north": {"uv": [7.5, 2, 8, 3], "texture": "#3"}, + "east": {"uv": [2.5, 7.5, 3, 8.5], "texture": "#3"}, + "south": {"uv": [3, 7.5, 3.5, 8.5], "texture": "#3"}, + "west": {"uv": [3.5, 7.5, 4, 8.5], "texture": "#3"}, + "up": {"uv": [9, 0.5, 8.5, 0], "texture": "#3"}, + "down": {"uv": [1, 8.5, 0.5, 9], "texture": "#3"} + } + }, + { + "from": [14, 2, 15], + "to": [15, 3, 16], + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#3"}, + "east": {"uv": [1, 8.5, 1.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#3"}, + "west": {"uv": [1.5, 8.5, 2, 9], "texture": "#3"}, + "up": {"uv": [9, 2, 8.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 8.5, 2, 9], "texture": "#3"} + } + }, + { + "from": [15, 2, 14], + "to": [16, 3, 15], + "faces": { + "north": {"uv": [8.5, 2, 9, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 8.5, 3, 9], "texture": "#3"}, + "south": {"uv": [8.5, 2.5, 9, 3], "texture": "#3"}, + "west": {"uv": [3, 8.5, 3.5, 9], "texture": "#3"}, + "up": {"uv": [9, 3.5, 8.5, 3], "texture": "#3"}, + "down": {"uv": [4, 8.5, 3.5, 9], "texture": "#3"} + } + }, + { + "from": [13, 2, 14], + "to": [14, 3, 15], + "faces": { + "north": {"uv": [8.5, 3.5, 9, 4], "texture": "#3"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 4, 9, 4.5], "texture": "#3"}, + "west": {"uv": [4.5, 8.5, 5, 9], "texture": "#3"}, + "up": {"uv": [9, 5, 8.5, 4.5], "texture": "#3"}, + "down": {"uv": [5.5, 8.5, 5, 9], "texture": "#3"} + } + }, + { + "from": [15, 1, 15], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [7.5, 3.5, 8, 4.5], "texture": "#3"}, + "east": {"uv": [4, 7.5, 4.5, 8.5], "texture": "#3"}, + "south": {"uv": [5, 7.5, 5.5, 8.5], "texture": "#3"}, + "west": {"uv": [5.5, 7.5, 6, 8.5], "texture": "#3"}, + "up": {"uv": [9, 5.5, 8.5, 5], "texture": "#3"}, + "down": {"uv": [6, 8.5, 5.5, 9], "texture": "#3"} + } + }, + { + "from": [13, 0, 0], + "to": [14, 1, 3], + "faces": { + "north": {"uv": [8.5, 8, 9, 8.5], "texture": "#3"}, + "east": {"uv": [8.5, 5.5, 10, 6], "texture": "#3"}, + "south": {"uv": [9, 6, 9.5, 6.5], "texture": "#3"}, + "west": {"uv": [6, 8.5, 7.5, 9], "texture": "#3"}, + "up": {"uv": [9, 7.5, 8.5, 6], "texture": "#3"}, + "down": {"uv": [8, 8.5, 7.5, 10], "texture": "#3"} + } + }, + { + "from": [15, 0, 0], + "to": [16, 1, 3], + "faces": { + "north": {"uv": [6.5, 9, 7, 9.5], "texture": "#3"}, + "east": {"uv": [8.5, 7.5, 10, 8], "texture": "#3"}, + "south": {"uv": [9, 6.5, 9.5, 7], "texture": "#3"}, + "west": {"uv": [8, 8.5, 9.5, 9], "texture": "#3"}, + "up": {"uv": [0.5, 10.5, 0, 9], "texture": "#3"}, + "down": {"uv": [9.5, 0, 9, 1.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 0], + "to": [15, 1, 1], + "faces": { + "north": {"uv": [7, 9, 7.5, 9.5], "texture": "#3"}, + "east": {"uv": [9, 7, 9.5, 7.5], "texture": "#3"}, + "south": {"uv": [8, 9, 8.5, 9.5], "texture": "#3"}, + "west": {"uv": [9, 8, 9.5, 8.5], "texture": "#3"}, + "up": {"uv": [9, 9.5, 8.5, 9], "texture": "#3"}, + "down": {"uv": [9.5, 9, 9, 9.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 2], + "to": [15, 1, 3], + "faces": { + "north": {"uv": [9.5, 0, 10, 0.5], "texture": "#3"}, + "east": {"uv": [9.5, 0.5, 10, 1], "texture": "#3"}, + "south": {"uv": [9.5, 1, 10, 1.5], "texture": "#3"}, + "west": {"uv": [9.5, 1.5, 10, 2], "texture": "#3"}, + "up": {"uv": [10, 2.5, 9.5, 2], "texture": "#3"}, + "down": {"uv": [10, 2.5, 9.5, 3], "texture": "#3"} + } + }, + { + "from": [15, 1, 0], + "to": [16, 3, 1], + "faces": { + "north": {"uv": [0.5, 9, 1, 10], "texture": "#3"}, + "east": {"uv": [1, 9, 1.5, 10], "texture": "#3"}, + "south": {"uv": [1.5, 9, 2, 10], "texture": "#3"}, + "west": {"uv": [9, 1.5, 9.5, 2.5], "texture": "#3"}, + "up": {"uv": [10, 3.5, 9.5, 3], "texture": "#3"}, + "down": {"uv": [10, 3.5, 9.5, 4], "texture": "#3"} + } + }, + { + "from": [14, 2, 0], + "to": [15, 3, 1], + "faces": { + "north": {"uv": [9.5, 4, 10, 4.5], "texture": "#3"}, + "east": {"uv": [9.5, 4.5, 10, 5], "texture": "#3"}, + "south": {"uv": [9.5, 5, 10, 5.5], "texture": "#3"}, + "west": {"uv": [9.5, 6, 10, 6.5], "texture": "#3"}, + "up": {"uv": [7, 10, 6.5, 9.5], "texture": "#3"}, + "down": {"uv": [10, 6.5, 9.5, 7], "texture": "#3"} + } + }, + { + "from": [13, 1, 0], + "to": [14, 3, 1], + "faces": { + "north": {"uv": [2, 9, 2.5, 10], "texture": "#3"}, + "east": {"uv": [2.5, 9, 3, 10], "texture": "#3"}, + "south": {"uv": [9, 2.5, 9.5, 3.5], "texture": "#3"}, + "west": {"uv": [3, 9, 3.5, 10], "texture": "#3"}, + "up": {"uv": [7.5, 10, 7, 9.5], "texture": "#3"}, + "down": {"uv": [10, 7, 9.5, 7.5], "texture": "#3"} + } + }, + { + "from": [13, 1, 2], + "to": [14, 3, 3], + "faces": { + "north": {"uv": [3.5, 9, 4, 10], "texture": "#3"}, + "east": {"uv": [9, 3.5, 9.5, 4.5], "texture": "#3"}, + "south": {"uv": [4, 9, 4.5, 10], "texture": "#3"}, + "west": {"uv": [4.5, 9, 5, 10], "texture": "#3"}, + "up": {"uv": [8.5, 10, 8, 9.5], "texture": "#3"}, + "down": {"uv": [10, 8, 9.5, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 2, 2], + "to": [15, 3, 3], + "faces": { + "north": {"uv": [8.5, 9.5, 9, 10], "texture": "#3"}, + "east": {"uv": [9.5, 8.5, 10, 9], "texture": "#3"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#3"}, + "west": {"uv": [9.5, 9, 10, 9.5], "texture": "#3"}, + "up": {"uv": [10, 10, 9.5, 9.5], "texture": "#3"}, + "down": {"uv": [10.5, 0, 10, 0.5], "texture": "#3"} + } + }, + { + "from": [15, 2, 1], + "to": [16, 3, 2], + "faces": { + "north": {"uv": [0.5, 10, 1, 10.5], "texture": "#3"}, + "east": {"uv": [10, 0.5, 10.5, 1], "texture": "#3"}, + "south": {"uv": [1, 10, 1.5, 10.5], "texture": "#3"}, + "west": {"uv": [10, 1, 10.5, 1.5], "texture": "#3"}, + "up": {"uv": [2, 10.5, 1.5, 10], "texture": "#3"}, + "down": {"uv": [10.5, 1.5, 10, 2], "texture": "#3"} + } + }, + { + "from": [13, 2, 1], + "to": [14, 3, 2], + "faces": { + "north": {"uv": [2, 10, 2.5, 10.5], "texture": "#3"}, + "east": {"uv": [10, 2, 10.5, 2.5], "texture": "#3"}, + "south": {"uv": [2.5, 10, 3, 10.5], "texture": "#3"}, + "west": {"uv": [10, 2.5, 10.5, 3], "texture": "#3"}, + "up": {"uv": [3.5, 10.5, 3, 10], "texture": "#3"}, + "down": {"uv": [10.5, 3, 10, 3.5], "texture": "#3"} + } + }, + { + "from": [15, 1, 2], + "to": [16, 3, 3], + "faces": { + "north": {"uv": [9, 4.5, 9.5, 5.5], "texture": "#3"}, + "east": {"uv": [5, 9, 5.5, 10], "texture": "#3"}, + "south": {"uv": [5.5, 9, 6, 10], "texture": "#3"}, + "west": {"uv": [6, 9, 6.5, 10], "texture": "#3"}, + "up": {"uv": [4, 10.5, 3.5, 10], "texture": "#3"}, + "down": {"uv": [10.5, 3.5, 10, 4], "texture": "#3"} + } + }, + { + "from": [13, 13, 0], + "to": [14, 14, 3], + "faces": { + "north": {"uv": [3, 10.5, 3.5, 11], "texture": "#3"}, + "east": {"uv": [4, 10, 5.5, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 3, 11, 3.5], "texture": "#3"}, + "west": {"uv": [10, 4, 11.5, 4.5], "texture": "#3"}, + "up": {"uv": [10.5, 6, 10, 4.5], "texture": "#3"}, + "down": {"uv": [6, 10, 5.5, 11.5], "texture": "#3"} + } + }, + { + "from": [15, 13, 0], + "to": [16, 14, 3], + "faces": { + "north": {"uv": [3.5, 10.5, 4, 11], "texture": "#3"}, + "east": {"uv": [6, 10, 7.5, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 3.5, 11, 4], "texture": "#3"}, + "west": {"uv": [10, 6, 11.5, 6.5], "texture": "#3"}, + "up": {"uv": [10.5, 8, 10, 6.5], "texture": "#3"}, + "down": {"uv": [8, 10, 7.5, 11.5], "texture": "#3"} + } + }, + { + "from": [14, 13, 0], + "to": [15, 14, 1], + "faces": { + "north": {"uv": [4, 10.5, 4.5, 11], "texture": "#3"}, + "east": {"uv": [4.5, 10.5, 5, 11], "texture": "#3"}, + "south": {"uv": [10.5, 4.5, 11, 5], "texture": "#3"}, + "west": {"uv": [5, 10.5, 5.5, 11], "texture": "#3"}, + "up": {"uv": [11, 5.5, 10.5, 5], "texture": "#3"}, + "down": {"uv": [11, 5.5, 10.5, 6], "texture": "#3"} + } + }, + { + "from": [14, 13, 2], + "to": [15, 14, 3], + "faces": { + "north": {"uv": [6, 10.5, 6.5, 11], "texture": "#3"}, + "east": {"uv": [6.5, 10.5, 7, 11], "texture": "#3"}, + "south": {"uv": [10.5, 6.5, 11, 7], "texture": "#3"}, + "west": {"uv": [7, 10.5, 7.5, 11], "texture": "#3"}, + "up": {"uv": [11, 7.5, 10.5, 7], "texture": "#3"}, + "down": {"uv": [11, 7.5, 10.5, 8], "texture": "#3"} + } + }, + { + "from": [15, 14, 0], + "to": [16, 16, 1], + "faces": { + "north": {"uv": [8, 10, 8.5, 11], "texture": "#3"}, + "east": {"uv": [10, 8, 10.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 10, 9, 11], "texture": "#3"}, + "west": {"uv": [9, 10, 9.5, 11], "texture": "#3"}, + "up": {"uv": [11, 8.5, 10.5, 8], "texture": "#3"}, + "down": {"uv": [11, 8.5, 10.5, 9], "texture": "#3"} + } + }, + { + "from": [14, 15, 0], + "to": [15, 16, 1], + "faces": { + "north": {"uv": [10.5, 9, 11, 9.5], "texture": "#3"}, + "east": {"uv": [10.5, 9.5, 11, 10], "texture": "#3"}, + "south": {"uv": [10.5, 10, 11, 10.5], "texture": "#3"}, + "west": {"uv": [10.5, 10.5, 11, 11], "texture": "#3"}, + "up": {"uv": [11.5, 0.5, 11, 0], "texture": "#3"}, + "down": {"uv": [11.5, 0.5, 11, 1], "texture": "#3"} + } + }, + { + "from": [13, 14, 0], + "to": [14, 16, 1], + "faces": { + "north": {"uv": [10, 9, 10.5, 10], "texture": "#3"}, + "east": {"uv": [9.5, 10, 10, 11], "texture": "#3"}, + "south": {"uv": [10, 10, 10.5, 11], "texture": "#3"}, + "west": {"uv": [0, 10.5, 0.5, 11.5], "texture": "#3"}, + "up": {"uv": [11.5, 1.5, 11, 1], "texture": "#3"}, + "down": {"uv": [11.5, 1.5, 11, 2], "texture": "#3"} + } + }, + { + "from": [13, 14, 2], + "to": [14, 16, 3], + "faces": { + "north": {"uv": [10.5, 0, 11, 1], "texture": "#3"}, + "east": {"uv": [0.5, 10.5, 1, 11.5], "texture": "#3"}, + "south": {"uv": [1, 10.5, 1.5, 11.5], "texture": "#3"}, + "west": {"uv": [10.5, 1, 11, 2], "texture": "#3"}, + "up": {"uv": [11.5, 2.5, 11, 2], "texture": "#3"}, + "down": {"uv": [11.5, 2.5, 11, 3], "texture": "#3"} + } + }, + { + "from": [14, 15, 2], + "to": [15, 16, 3], + "faces": { + "north": {"uv": [3, 11, 3.5, 11.5], "texture": "#3"}, + "east": {"uv": [11, 3, 11.5, 3.5], "texture": "#3"}, + "south": {"uv": [3.5, 11, 4, 11.5], "texture": "#3"}, + "west": {"uv": [11, 3.5, 11.5, 4], "texture": "#3"}, + "up": {"uv": [4.5, 11.5, 4, 11], "texture": "#3"}, + "down": {"uv": [5, 11, 4.5, 11.5], "texture": "#3"} + } + }, + { + "from": [15, 15, 1], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [11, 4.5, 11.5, 5], "texture": "#3"}, + "east": {"uv": [5, 11, 5.5, 11.5], "texture": "#3"}, + "south": {"uv": [11, 5, 11.5, 5.5], "texture": "#3"}, + "west": {"uv": [11, 5.5, 11.5, 6], "texture": "#3"}, + "up": {"uv": [6.5, 11.5, 6, 11], "texture": "#3"}, + "down": {"uv": [7, 11, 6.5, 11.5], "texture": "#3"} + } + }, + { + "from": [13, 15, 1], + "to": [14, 16, 2], + "faces": { + "north": {"uv": [11, 6.5, 11.5, 7], "texture": "#3"}, + "east": {"uv": [7, 11, 7.5, 11.5], "texture": "#3"}, + "south": {"uv": [11, 7, 11.5, 7.5], "texture": "#3"}, + "west": {"uv": [11, 7.5, 11.5, 8], "texture": "#3"}, + "up": {"uv": [8.5, 11.5, 8, 11], "texture": "#3"}, + "down": {"uv": [11.5, 8, 11, 8.5], "texture": "#3"} + } + }, + { + "from": [15, 14, 2], + "to": [16, 16, 3], + "faces": { + "north": {"uv": [1.5, 10.5, 2, 11.5], "texture": "#3"}, + "east": {"uv": [2, 10.5, 2.5, 11.5], "texture": "#3"}, + "south": {"uv": [10.5, 2, 11, 3], "texture": "#3"}, + "west": {"uv": [2.5, 10.5, 3, 11.5], "texture": "#3"}, + "up": {"uv": [9, 11.5, 8.5, 11], "texture": "#3"}, + "down": {"uv": [11.5, 8.5, 11, 9], "texture": "#3"} + } + }, + { + "from": [13, 13, 13], + "to": [14, 14, 16], + "faces": { + "north": {"uv": [7, 11.5, 7.5, 12], "texture": "#3"}, + "east": {"uv": [9, 11, 10.5, 11.5], "texture": "#3"}, + "south": {"uv": [7.5, 11.5, 8, 12], "texture": "#3"}, + "west": {"uv": [11, 9, 12.5, 9.5], "texture": "#3"}, + "up": {"uv": [11.5, 11, 11, 9.5], "texture": "#3"}, + "down": {"uv": [11, 11, 10.5, 12.5], "texture": "#3"} + } + }, + { + "from": [15, 13, 13], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [11.5, 7.5, 12, 8], "texture": "#3"}, + "east": {"uv": [11, 11, 12.5, 11.5], "texture": "#3"}, + "south": {"uv": [8, 11.5, 8.5, 12], "texture": "#3"}, + "west": {"uv": [0, 11.5, 1.5, 12], "texture": "#3"}, + "up": {"uv": [12, 1.5, 11.5, 0], "texture": "#3"}, + "down": {"uv": [2, 11.5, 1.5, 13], "texture": "#3"} + } + }, + { + "from": [14, 13, 13], + "to": [15, 14, 14], + "faces": { + "north": {"uv": [11.5, 8, 12, 8.5], "texture": "#3"}, + "east": {"uv": [8.5, 11.5, 9, 12], "texture": "#3"}, + "south": {"uv": [11.5, 8.5, 12, 9], "texture": "#3"}, + "west": {"uv": [9, 11.5, 9.5, 12], "texture": "#3"}, + "up": {"uv": [10, 12, 9.5, 11.5], "texture": "#3"}, + "down": {"uv": [12, 9.5, 11.5, 10], "texture": "#3"} + } + }, + { + "from": [14, 13, 15], + "to": [15, 14, 16], + "faces": { + "north": {"uv": [10, 11.5, 10.5, 12], "texture": "#3"}, + "east": {"uv": [11.5, 10, 12, 10.5], "texture": "#3"}, + "south": {"uv": [11.5, 10.5, 12, 11], "texture": "#3"}, + "west": {"uv": [11, 11.5, 11.5, 12], "texture": "#3"}, + "up": {"uv": [12, 12, 11.5, 11.5], "texture": "#3"}, + "down": {"uv": [0.5, 12, 0, 12.5], "texture": "#3"} + } + }, + { + "from": [15, 14, 13], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [11.5, 1.5, 12, 2.5], "texture": "#3"}, + "east": {"uv": [2, 11.5, 2.5, 12.5], "texture": "#3"}, + "south": {"uv": [2.5, 11.5, 3, 12.5], "texture": "#3"}, + "west": {"uv": [11.5, 2.5, 12, 3.5], "texture": "#3"}, + "up": {"uv": [12.5, 0.5, 12, 0], "texture": "#3"}, + "down": {"uv": [1, 12, 0.5, 12.5], "texture": "#3"} + } + }, + { + "from": [14, 15, 13], + "to": [15, 16, 14], + "faces": { + "north": {"uv": [12, 0.5, 12.5, 1], "texture": "#3"}, + "east": {"uv": [1, 12, 1.5, 12.5], "texture": "#3"}, + "south": {"uv": [12, 1, 12.5, 1.5], "texture": "#3"}, + "west": {"uv": [12, 1.5, 12.5, 2], "texture": "#3"}, + "up": {"uv": [12.5, 2.5, 12, 2], "texture": "#3"}, + "down": {"uv": [12.5, 2.5, 12, 3], "texture": "#3"} + } + }, + { + "from": [13, 14, 13], + "to": [14, 16, 14], + "faces": { + "north": {"uv": [3, 11.5, 3.5, 12.5], "texture": "#3"}, + "east": {"uv": [3.5, 11.5, 4, 12.5], "texture": "#3"}, + "south": {"uv": [11.5, 3.5, 12, 4.5], "texture": "#3"}, + "west": {"uv": [4, 11.5, 4.5, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 3.5, 12, 3], "texture": "#3"}, + "down": {"uv": [12.5, 3.5, 12, 4], "texture": "#3"} + } + }, + { + "from": [13, 14, 15], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [4.5, 11.5, 5, 12.5], "texture": "#3"}, + "east": {"uv": [11.5, 4.5, 12, 5.5], "texture": "#3"}, + "south": {"uv": [5, 11.5, 5.5, 12.5], "texture": "#3"}, + "west": {"uv": [5.5, 11.5, 6, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 4.5, 12, 4], "texture": "#3"}, + "down": {"uv": [12.5, 4.5, 12, 5], "texture": "#3"} + } + }, + { + "from": [14, 15, 15], + "to": [15, 16, 16], + "faces": { + "north": {"uv": [12, 5, 12.5, 5.5], "texture": "#3"}, + "east": {"uv": [12, 5.5, 12.5, 6], "texture": "#3"}, + "south": {"uv": [12, 6, 12.5, 6.5], "texture": "#3"}, + "west": {"uv": [12, 6.5, 12.5, 7], "texture": "#3"}, + "up": {"uv": [7.5, 12.5, 7, 12], "texture": "#3"}, + "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#3"} + } + }, + { + "from": [15, 15, 14], + "to": [16, 16, 15], + "faces": { + "north": {"uv": [7.5, 12, 8, 12.5], "texture": "#3"}, + "east": {"uv": [12, 7.5, 12.5, 8], "texture": "#3"}, + "south": {"uv": [8, 12, 8.5, 12.5], "texture": "#3"}, + "west": {"uv": [12, 8, 12.5, 8.5], "texture": "#3"}, + "up": {"uv": [9, 12.5, 8.5, 12], "texture": "#3"}, + "down": {"uv": [12.5, 8.5, 12, 9], "texture": "#3"} + } + }, + { + "from": [13, 15, 14], + "to": [14, 16, 15], + "faces": { + "north": {"uv": [9, 12, 9.5, 12.5], "texture": "#3"}, + "east": {"uv": [9.5, 12, 10, 12.5], "texture": "#3"}, + "south": {"uv": [12, 9.5, 12.5, 10], "texture": "#3"}, + "west": {"uv": [10, 12, 10.5, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 10.5, 12, 10], "texture": "#3"}, + "down": {"uv": [12.5, 10.5, 12, 11], "texture": "#3"} + } + }, + { + "from": [15, 14, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [11.5, 5.5, 12, 6.5], "texture": "#3"}, + "east": {"uv": [6, 11.5, 6.5, 12.5], "texture": "#3"}, + "south": {"uv": [6.5, 11.5, 7, 12.5], "texture": "#3"}, + "west": {"uv": [11.5, 6.5, 12, 7.5], "texture": "#3"}, + "up": {"uv": [11.5, 12.5, 11, 12], "texture": "#3"}, + "down": {"uv": [12, 12, 11.5, 12.5], "texture": "#3"} + } + }, + { + "from": [0, 13, 13], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [12.5, 8, 13, 8.5], "texture": "#3"}, + "east": {"uv": [12, 11.5, 13.5, 12], "texture": "#3"}, + "south": {"uv": [8.5, 12.5, 9, 13], "texture": "#3"}, + "west": {"uv": [12, 12, 13.5, 12.5], "texture": "#3"}, + "up": {"uv": [0.5, 14, 0, 12.5], "texture": "#3"}, + "down": {"uv": [13, 0, 12.5, 1.5], "texture": "#3"} + } + }, + { + "from": [2, 13, 13], + "to": [3, 14, 16], + "faces": { + "north": {"uv": [12.5, 8.5, 13, 9], "texture": "#3"}, + "east": {"uv": [12.5, 1.5, 14, 2], "texture": "#3"}, + "south": {"uv": [9, 12.5, 9.5, 13], "texture": "#3"}, + "west": {"uv": [2, 12.5, 3.5, 13], "texture": "#3"}, + "up": {"uv": [1, 14, 0.5, 12.5], "texture": "#3"}, + "down": {"uv": [1.5, 12.5, 1, 14], "texture": "#3"} + } + }, + { + "from": [1, 13, 13], + "to": [2, 14, 14], + "faces": { + "north": {"uv": [12.5, 9, 13, 9.5], "texture": "#3"}, + "east": {"uv": [9.5, 12.5, 10, 13], "texture": "#3"}, + "south": {"uv": [12.5, 9.5, 13, 10], "texture": "#3"}, + "west": {"uv": [10, 12.5, 10.5, 13], "texture": "#3"}, + "up": {"uv": [13, 10.5, 12.5, 10], "texture": "#3"}, + "down": {"uv": [11, 12.5, 10.5, 13], "texture": "#3"} + } + }, + { + "from": [1, 13, 15], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [12.5, 10.5, 13, 11], "texture": "#3"}, + "east": {"uv": [11, 12.5, 11.5, 13], "texture": "#3"}, + "south": {"uv": [12.5, 11, 13, 11.5], "texture": "#3"}, + "west": {"uv": [11.5, 12.5, 12, 13], "texture": "#3"}, + "up": {"uv": [12.5, 13, 12, 12.5], "texture": "#3"}, + "down": {"uv": [13, 12.5, 12.5, 13], "texture": "#3"} + } + }, + { + "from": [2, 14, 13], + "to": [3, 16, 14], + "faces": { + "north": {"uv": [12.5, 2, 13, 3], "texture": "#3"}, + "east": {"uv": [12.5, 3, 13, 4], "texture": "#3"}, + "south": {"uv": [3.5, 12.5, 4, 13.5], "texture": "#3"}, + "west": {"uv": [4, 12.5, 4.5, 13.5], "texture": "#3"}, + "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#3"}, + "down": {"uv": [13.5, 0.5, 13, 1], "texture": "#3"} + } + }, + { + "from": [1, 15, 13], + "to": [2, 16, 14], + "faces": { + "north": {"uv": [13, 1, 13.5, 1.5], "texture": "#3"}, + "east": {"uv": [1.5, 13, 2, 13.5], "texture": "#3"}, + "south": {"uv": [2, 13, 2.5, 13.5], "texture": "#3"}, + "west": {"uv": [13, 2, 13.5, 2.5], "texture": "#3"}, + "up": {"uv": [3, 13.5, 2.5, 13], "texture": "#3"}, + "down": {"uv": [13.5, 2.5, 13, 3], "texture": "#3"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 16, 14], + "faces": { + "north": {"uv": [12.5, 4, 13, 5], "texture": "#3"}, + "east": {"uv": [4.5, 12.5, 5, 13.5], "texture": "#3"}, + "south": {"uv": [5, 12.5, 5.5, 13.5], "texture": "#3"}, + "west": {"uv": [12.5, 5, 13, 6], "texture": "#3"}, + "up": {"uv": [3.5, 13.5, 3, 13], "texture": "#3"}, + "down": {"uv": [13.5, 3, 13, 3.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 15], + "to": [1, 16, 16], + "faces": { + "north": {"uv": [5.5, 12.5, 6, 13.5], "texture": "#3"}, + "east": {"uv": [6, 12.5, 6.5, 13.5], "texture": "#3"}, + "south": {"uv": [12.5, 6, 13, 7], "texture": "#3"}, + "west": {"uv": [6.5, 12.5, 7, 13.5], "texture": "#3"}, + "up": {"uv": [13.5, 4, 13, 3.5], "texture": "#3"}, + "down": {"uv": [13.5, 4, 13, 4.5], "texture": "#3"} + } + }, + { + "from": [1, 15, 15], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [13, 4.5, 13.5, 5], "texture": "#3"}, + "east": {"uv": [13, 5, 13.5, 5.5], "texture": "#3"}, + "south": {"uv": [13, 5.5, 13.5, 6], "texture": "#3"}, + "west": {"uv": [13, 6, 13.5, 6.5], "texture": "#3"}, + "up": {"uv": [13.5, 7, 13, 6.5], "texture": "#3"}, + "down": {"uv": [13.5, 7, 13, 7.5], "texture": "#3"} + } + }, + { + "from": [2, 15, 14], + "to": [3, 16, 15], + "faces": { + "north": {"uv": [13, 7.5, 13.5, 8], "texture": "#3"}, + "east": {"uv": [13, 8, 13.5, 8.5], "texture": "#3"}, + "south": {"uv": [8.5, 13, 9, 13.5], "texture": "#3"}, + "west": {"uv": [13, 8.5, 13.5, 9], "texture": "#3"}, + "up": {"uv": [9.5, 13.5, 9, 13], "texture": "#3"}, + "down": {"uv": [13.5, 9, 13, 9.5], "texture": "#3"} + } + }, + { + "from": [0, 15, 14], + "to": [1, 16, 15], + "faces": { + "north": {"uv": [9.5, 13, 10, 13.5], "texture": "#3"}, + "east": {"uv": [13, 9.5, 13.5, 10], "texture": "#3"}, + "south": {"uv": [10, 13, 10.5, 13.5], "texture": "#3"}, + "west": {"uv": [13, 10, 13.5, 10.5], "texture": "#3"}, + "up": {"uv": [11, 13.5, 10.5, 13], "texture": "#3"}, + "down": {"uv": [13.5, 10.5, 13, 11], "texture": "#3"} + } + }, + { + "from": [2, 14, 15], + "to": [3, 16, 16], + "faces": { + "north": {"uv": [7, 12.5, 7.5, 13.5], "texture": "#3"}, + "east": {"uv": [12.5, 7, 13, 8], "texture": "#3"}, + "south": {"uv": [7.5, 12.5, 8, 13.5], "texture": "#3"}, + "west": {"uv": [8, 12.5, 8.5, 13.5], "texture": "#3"}, + "up": {"uv": [11.5, 13.5, 11, 13], "texture": "#3"}, + "down": {"uv": [13.5, 11, 13, 11.5], "texture": "#3"} + } + }, + { + "from": [0, 13, 0], + "to": [1, 14, 3], + "faces": { + "north": {"uv": [9, 13.5, 9.5, 14], "texture": "#3"}, + "east": {"uv": [11.5, 13, 13, 13.5], "texture": "#3"}, + "south": {"uv": [13.5, 9, 14, 9.5], "texture": "#3"}, + "west": {"uv": [13, 12.5, 14.5, 13], "texture": "#3"}, + "up": {"uv": [13.5, 14.5, 13, 13], "texture": "#3"}, + "down": {"uv": [14, 0, 13.5, 1.5], "texture": "#3"} + } + }, + { + "from": [2, 13, 0], + "to": [3, 14, 3], + "faces": { + "north": {"uv": [9.5, 13.5, 10, 14], "texture": "#3"}, + "east": {"uv": [1.5, 13.5, 3, 14], "texture": "#3"}, + "south": {"uv": [13.5, 9.5, 14, 10], "texture": "#3"}, + "west": {"uv": [13.5, 2, 15, 2.5], "texture": "#3"}, + "up": {"uv": [14, 4, 13.5, 2.5], "texture": "#3"}, + "down": {"uv": [3.5, 13.5, 3, 15], "texture": "#3"} + } + }, + { + "from": [1, 13, 0], + "to": [2, 14, 1], + "faces": { + "north": {"uv": [10, 13.5, 10.5, 14], "texture": "#3"}, + "east": {"uv": [13.5, 10, 14, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 13.5, 11, 14], "texture": "#3"}, + "west": {"uv": [13.5, 10.5, 14, 11], "texture": "#3"}, + "up": {"uv": [11.5, 14, 11, 13.5], "texture": "#3"}, + "down": {"uv": [14, 11, 13.5, 11.5], "texture": "#3"} + } + }, + { + "from": [1, 13, 2], + "to": [2, 14, 3], + "faces": { + "north": {"uv": [11.5, 13.5, 12, 14], "texture": "#3"}, + "east": {"uv": [13.5, 11.5, 14, 12], "texture": "#3"}, + "south": {"uv": [12, 13.5, 12.5, 14], "texture": "#3"}, + "west": {"uv": [13.5, 12, 14, 12.5], "texture": "#3"}, + "up": {"uv": [13, 14, 12.5, 13.5], "texture": "#3"}, + "down": {"uv": [14, 13, 13.5, 13.5], "texture": "#3"} + } + }, + { + "from": [2, 14, 0], + "to": [3, 16, 1], + "faces": { + "north": {"uv": [3.5, 13.5, 4, 14.5], "texture": "#3"}, + "east": {"uv": [4, 13.5, 4.5, 14.5], "texture": "#3"}, + "south": {"uv": [13.5, 4, 14, 5], "texture": "#3"}, + "west": {"uv": [4.5, 13.5, 5, 14.5], "texture": "#3"}, + "up": {"uv": [14, 14, 13.5, 13.5], "texture": "#3"}, + "down": {"uv": [0.5, 14, 0, 14.5], "texture": "#3"} + } + }, + { + "from": [1, 15, 0], + "to": [2, 16, 1], + "faces": { + "north": {"uv": [14, 0, 14.5, 0.5], "texture": "#3"}, + "east": {"uv": [0.5, 14, 1, 14.5], "texture": "#3"}, + "south": {"uv": [14, 0.5, 14.5, 1], "texture": "#3"}, + "west": {"uv": [1, 14, 1.5, 14.5], "texture": "#3"}, + "up": {"uv": [14.5, 1.5, 14, 1], "texture": "#3"}, + "down": {"uv": [2, 14, 1.5, 14.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 0], + "to": [1, 16, 1], + "faces": { + "north": {"uv": [5, 13.5, 5.5, 14.5], "texture": "#3"}, + "east": {"uv": [13.5, 5, 14, 6], "texture": "#3"}, + "south": {"uv": [5.5, 13.5, 6, 14.5], "texture": "#3"}, + "west": {"uv": [6, 13.5, 6.5, 14.5], "texture": "#3"}, + "up": {"uv": [14.5, 2, 14, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 14, 2, 14.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 2], + "to": [1, 16, 3], + "faces": { + "north": {"uv": [13.5, 6, 14, 7], "texture": "#3"}, + "east": {"uv": [6.5, 13.5, 7, 14.5], "texture": "#3"}, + "south": {"uv": [7, 13.5, 7.5, 14.5], "texture": "#3"}, + "west": {"uv": [13.5, 7, 14, 8], "texture": "#3"}, + "up": {"uv": [3, 14.5, 2.5, 14], "texture": "#3"}, + "down": {"uv": [14.5, 2.5, 14, 3], "texture": "#3"} + } + }, + { + "from": [1, 15, 2], + "to": [2, 16, 3], + "faces": { + "north": {"uv": [14, 3, 14.5, 3.5], "texture": "#3"}, + "east": {"uv": [14, 3.5, 14.5, 4], "texture": "#3"}, + "south": {"uv": [14, 4, 14.5, 4.5], "texture": "#3"}, + "west": {"uv": [14, 4.5, 14.5, 5], "texture": "#3"}, + "up": {"uv": [14.5, 5.5, 14, 5], "texture": "#3"}, + "down": {"uv": [14.5, 5.5, 14, 6], "texture": "#3"} + } + }, + { + "from": [2, 15, 1], + "to": [3, 16, 2], + "faces": { + "north": {"uv": [14, 6, 14.5, 6.5], "texture": "#3"}, + "east": {"uv": [14, 6.5, 14.5, 7], "texture": "#3"}, + "south": {"uv": [14, 7, 14.5, 7.5], "texture": "#3"}, + "west": {"uv": [14, 7.5, 14.5, 8], "texture": "#3"}, + "up": {"uv": [14.5, 8.5, 14, 8], "texture": "#3"}, + "down": {"uv": [14.5, 8.5, 14, 9], "texture": "#3"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 16, 2], + "faces": { + "north": {"uv": [9, 14, 9.5, 14.5], "texture": "#3"}, + "east": {"uv": [14, 9, 14.5, 9.5], "texture": "#3"}, + "south": {"uv": [9.5, 14, 10, 14.5], "texture": "#3"}, + "west": {"uv": [14, 9.5, 14.5, 10], "texture": "#3"}, + "up": {"uv": [10.5, 14.5, 10, 14], "texture": "#3"}, + "down": {"uv": [14.5, 10, 14, 10.5], "texture": "#3"} + } + }, + { + "from": [2, 14, 2], + "to": [3, 16, 3], + "faces": { + "north": {"uv": [7.5, 13.5, 8, 14.5], "texture": "#3"}, + "east": {"uv": [8, 13.5, 8.5, 14.5], "texture": "#3"}, + "south": {"uv": [13.5, 8, 14, 9], "texture": "#3"}, + "west": {"uv": [8.5, 13.5, 9, 14.5], "texture": "#3"}, + "up": {"uv": [11, 14.5, 10.5, 14], "texture": "#3"}, + "down": {"uv": [14.5, 10.5, 14, 11], "texture": "#3"} + } + }, + { + "from": [1, 1, 2], + "to": [2, 2, 14], + "faces": { + "north": {"uv": [7, 1, 7.5, 1.5], "texture": "#1"}, + "east": {"uv": [0, 0, 6, 0.5], "texture": "#1"}, + "south": {"uv": [7, 1.5, 7.5, 2], "texture": "#1"}, + "west": {"uv": [0, 0.5, 6, 1], "texture": "#1"}, + "up": {"uv": [0.5, 7, 0, 1], "texture": "#1"}, + "down": {"uv": [1, 1, 0.5, 7], "texture": "#1"} + } + }, + { + "from": [14, 1, 2], + "to": [15, 2, 14], + "faces": { + "north": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, + "east": {"uv": [1, 1, 7, 1.5], "texture": "#1"}, + "south": {"uv": [7.5, 1.5, 8, 2], "texture": "#1"}, + "west": {"uv": [1, 1.5, 7, 2], "texture": "#1"}, + "up": {"uv": [1.5, 8, 1, 2], "texture": "#1"}, + "down": {"uv": [2, 2, 1.5, 8], "texture": "#1"} + } + }, + { + "from": [2, 1, 1], + "to": [14, 2, 2], + "faces": { + "north": {"uv": [2, 2, 8, 2.5], "texture": "#1"}, + "east": {"uv": [9.5, 6, 10, 6.5], "texture": "#1"}, + "south": {"uv": [2, 2.5, 8, 3], "texture": "#1"}, + "west": {"uv": [9.5, 6.5, 10, 7], "texture": "#1"}, + "up": {"uv": [8, 3.5, 2, 3], "texture": "#1"}, + "down": {"uv": [8, 3.5, 2, 4], "texture": "#1"} + } + }, + { + "from": [2, 1, 14], + "to": [14, 2, 15], + "faces": { + "north": {"uv": [2, 4, 8, 4.5], "texture": "#1"}, + "east": {"uv": [9.5, 7, 10, 7.5], "texture": "#1"}, + "south": {"uv": [2, 4.5, 8, 5], "texture": "#1"}, + "west": {"uv": [9.5, 7.5, 10, 8], "texture": "#1"}, + "up": {"uv": [8, 5.5, 2, 5], "texture": "#1"}, + "down": {"uv": [8, 5.5, 2, 6], "texture": "#1"} + } + }, + { + "from": [1, 14, 2], + "to": [2, 15, 14], + "faces": { + "north": {"uv": [9.5, 8, 10, 8.5], "texture": "#1"}, + "east": {"uv": [6, 0, 12, 0.5], "texture": "#1"}, + "south": {"uv": [9.5, 8.5, 10, 9], "texture": "#1"}, + "west": {"uv": [6, 0.5, 12, 1], "texture": "#1"}, + "up": {"uv": [2.5, 12, 2, 6], "texture": "#1"}, + "down": {"uv": [3, 6, 2.5, 12], "texture": "#1"} + } + }, + { + "from": [1, 2, 1], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [3, 6, 3.5, 12], "texture": "#1"}, + "east": {"uv": [3.5, 6, 4, 12], "texture": "#1"}, + "south": {"uv": [4, 6, 4.5, 12], "texture": "#1"}, + "west": {"uv": [4.5, 6, 5, 12], "texture": "#1"}, + "up": {"uv": [10, 9.5, 9.5, 9], "texture": "#1"}, + "down": {"uv": [10, 9.5, 9.5, 10], "texture": "#1"} + } + }, + { + "from": [1, 2, 14], + "to": [2, 14, 15], + "faces": { + "north": {"uv": [5, 6, 5.5, 12], "texture": "#1"}, + "east": {"uv": [5.5, 6, 6, 12], "texture": "#1"}, + "south": {"uv": [6, 6, 6.5, 12], "texture": "#1"}, + "west": {"uv": [6.5, 6, 7, 12], "texture": "#1"}, + "up": {"uv": [10.5, 6.5, 10, 6], "texture": "#1"}, + "down": {"uv": [10.5, 6.5, 10, 7], "texture": "#1"} + } + }, + { + "from": [14, 2, 14], + "to": [15, 14, 15], + "faces": { + "north": {"uv": [0, 7, 0.5, 13], "texture": "#1"}, + "east": {"uv": [0.5, 7, 1, 13], "texture": "#1"}, + "south": {"uv": [7, 6, 7.5, 12], "texture": "#1"}, + "west": {"uv": [7.5, 6, 8, 12], "texture": "#1"}, + "up": {"uv": [10.5, 7.5, 10, 7], "texture": "#1"}, + "down": {"uv": [10.5, 7.5, 10, 8], "texture": "#1"} + } + }, + { + "from": [14, 2, 1], + "to": [15, 14, 2], + "faces": { + "north": {"uv": [1, 8, 1.5, 14], "texture": "#1"}, + "east": {"uv": [8, 1, 8.5, 7], "texture": "#1"}, + "south": {"uv": [1.5, 8, 2, 14], "texture": "#1"}, + "west": {"uv": [8, 7, 8.5, 13], "texture": "#1"}, + "up": {"uv": [10.5, 8.5, 10, 8], "texture": "#1"}, + "down": {"uv": [9, 10, 8.5, 10.5], "texture": "#1"} + } + }, + { + "from": [2, 14, 14], + "to": [14, 15, 15], + "faces": { + "north": {"uv": [8.5, 1, 14.5, 1.5], "texture": "#1"}, + "east": {"uv": [10, 8.5, 10.5, 9], "texture": "#1"}, + "south": {"uv": [8.5, 1.5, 14.5, 2], "texture": "#1"}, + "west": {"uv": [9, 10, 9.5, 10.5], "texture": "#1"}, + "up": {"uv": [14.5, 2.5, 8.5, 2], "texture": "#1"}, + "down": {"uv": [14.5, 2.5, 8.5, 3], "texture": "#1"} + } + }, + { + "from": [14, 14, 2], + "to": [15, 15, 14], + "faces": { + "north": {"uv": [10, 9, 10.5, 9.5], "texture": "#1"}, + "east": {"uv": [8.5, 3, 14.5, 3.5], "texture": "#1"}, + "south": {"uv": [9.5, 10, 10, 10.5], "texture": "#1"}, + "west": {"uv": [8.5, 3.5, 14.5, 4], "texture": "#1"}, + "up": {"uv": [9, 10, 8.5, 4], "texture": "#1"}, + "down": {"uv": [9.5, 4, 9, 10], "texture": "#1"} + } + }, + { + "from": [2, 14, 1], + "to": [14, 15, 2], + "faces": { + "north": {"uv": [9.5, 4, 15.5, 4.5], "texture": "#1"}, + "east": {"uv": [10, 9.5, 10.5, 10], "texture": "#1"}, + "south": {"uv": [9.5, 4.5, 15.5, 5], "texture": "#1"}, + "west": {"uv": [10, 10, 10.5, 10.5], "texture": "#1"}, + "up": {"uv": [15.5, 5.5, 9.5, 5], "texture": "#1"}, + "down": {"uv": [15.5, 5.5, 9.5, 6], "texture": "#1"} + } + }, + { + "from": [6, 6, 6], + "to": [10, 10, 10], + "faces": { + "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, + "east": {"uv": [0, 4, 4, 8], "texture": "#0"}, + "south": {"uv": [4, 0, 8, 4], "texture": "#0"}, + "west": {"uv": [4, 4, 8, 8], "texture": "#0"}, + "up": {"uv": [4, 12, 0, 8], "texture": "#0"}, + "down": {"uv": [12, 0, 8, 4], "texture": "#0"} + } + }, + { + "name": "internal", + "from": [1, 1, 14], + "to": [2, 2, 15], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [0, 1, 1, 2], "texture": "#2"}, + "south": {"uv": [1, 0, 2, 1], "texture": "#2"}, + "west": {"uv": [1, 1, 2, 2], "texture": "#2"}, + "up": {"uv": [1, 3, 0, 2], "texture": "#2"}, + "down": {"uv": [3, 0, 2, 1], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 1, 1], + "to": [15, 2, 2], + "faces": { + "north": {"uv": [1, 2, 2, 3], "texture": "#2"}, + "east": {"uv": [2, 1, 3, 2], "texture": "#2"}, + "south": {"uv": [2, 2, 3, 3], "texture": "#2"}, + "west": {"uv": [0, 3, 1, 4], "texture": "#2"}, + "up": {"uv": [4, 1, 3, 0], "texture": "#2"}, + "down": {"uv": [2, 3, 1, 4], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 14, 1], + "to": [15, 15, 2], + "faces": { + "north": {"uv": [3, 1, 4, 2], "texture": "#2"}, + "east": {"uv": [2, 3, 3, 4], "texture": "#2"}, + "south": {"uv": [3, 2, 4, 3], "texture": "#2"}, + "west": {"uv": [3, 3, 4, 4], "texture": "#2"}, + "up": {"uv": [1, 5, 0, 4], "texture": "#2"}, + "down": {"uv": [5, 0, 4, 1], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 14, 14], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [1, 4, 2, 5], "texture": "#2"}, + "east": {"uv": [4, 1, 5, 2], "texture": "#2"}, + "south": {"uv": [2, 4, 3, 5], "texture": "#2"}, + "west": {"uv": [4, 2, 5, 3], "texture": "#2"}, + "up": {"uv": [4, 5, 3, 4], "texture": "#2"}, + "down": {"uv": [5, 3, 4, 4], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 14, 1], + "to": [2, 15, 2], + "faces": { + "north": {"uv": [4, 4, 5, 5], "texture": "#2"}, + "east": {"uv": [0, 5, 1, 6], "texture": "#2"}, + "south": {"uv": [5, 0, 6, 1], "texture": "#2"}, + "west": {"uv": [1, 5, 2, 6], "texture": "#2"}, + "up": {"uv": [6, 2, 5, 1], "texture": "#2"}, + "down": {"uv": [3, 5, 2, 6], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 14, 14], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [5, 2, 6, 3], "texture": "#2"}, + "east": {"uv": [3, 5, 4, 6], "texture": "#2"}, + "south": {"uv": [5, 3, 6, 4], "texture": "#2"}, + "west": {"uv": [4, 5, 5, 6], "texture": "#2"}, + "up": {"uv": [6, 5, 5, 4], "texture": "#2"}, + "down": {"uv": [6, 5, 5, 6], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 1, 14], + "to": [15, 2, 15], + "faces": { + "north": {"uv": [0, 6, 1, 7], "texture": "#2"}, + "east": {"uv": [6, 0, 7, 1], "texture": "#2"}, + "south": {"uv": [1, 6, 2, 7], "texture": "#2"}, + "west": {"uv": [6, 1, 7, 2], "texture": "#2"}, + "up": {"uv": [3, 7, 2, 6], "texture": "#2"}, + "down": {"uv": [7, 2, 6, 3], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 1, 1], + "to": [2, 2, 2], + "faces": { + "north": {"uv": [3, 6, 4, 7], "texture": "#2"}, + "east": {"uv": [6, 3, 7, 4], "texture": "#2"}, + "south": {"uv": [4, 6, 5, 7], "texture": "#2"}, + "west": {"uv": [6, 4, 7, 5], "texture": "#2"}, + "up": {"uv": [6, 7, 5, 6], "texture": "#2"}, + "down": {"uv": [7, 5, 6, 6], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95] + }, + { + "name": "Frame Bars", + "origin": [0, 0, 0], + "color": 0, + "children": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] + }, + 108, + { + "name": "Internals", + "origin": [0, 0, 0], + "color": 0, + "children": [109, 110, 111, 112, 113, 114, 115, 116] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/mini_sun.json b/src/old/resources/assets/ariasessentials/models/block/mini_sun.json new file mode 100644 index 0000000..236bba5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/mini_sun.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/mini_sun" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json b/src/old/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..68abdef --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/nether_vault_steel_ore_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json new file mode 100644 index 0000000..c378c1a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json new file mode 100644 index 0000000..296d607 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json new file mode 100644 index 0000000..4bbea1b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json new file mode 100644 index 0000000..7ef01a0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json new file mode 100644 index 0000000..1ae0ac1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json new file mode 100644 index 0000000..4ed06ec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_left", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json new file mode 100644 index 0000000..feccae3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json new file mode 100644 index 0000000..9a92cda --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_right", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json new file mode 100644 index 0000000..797b677 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json new file mode 100644 index 0000000..577aea8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json new file mode 100644 index 0000000..f4bf971 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json new file mode 100644 index 0000000..e23ae58 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json new file mode 100644 index 0000000..ac02e82 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json new file mode 100644 index 0000000..ecfe41e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json new file mode 100644 index 0000000..577aea8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json new file mode 100644 index 0000000..f3f46ec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json new file mode 100644 index 0000000..4fc9faa --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json new file mode 100644 index 0000000..f4bf971 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json new file mode 100644 index 0000000..577100d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json new file mode 100644 index 0000000..7fd58ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json new file mode 100644 index 0000000..e23ae58 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json new file mode 100644 index 0000000..2de73a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json new file mode 100644 index 0000000..5381c9e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json new file mode 100644 index 0000000..ac02e82 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json new file mode 100644 index 0000000..7be7a7e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json new file mode 100644 index 0000000..acc63a0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json new file mode 100644 index 0000000..86f282d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json new file mode 100644 index 0000000..8a16412 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json new file mode 100644 index 0000000..52aa7b6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json new file mode 100644 index 0000000..87a81ea --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json new file mode 100644 index 0000000..c061a1c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json new file mode 100644 index 0000000..53b7cda --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json new file mode 100644 index 0000000..99becb1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json new file mode 100644 index 0000000..52f565e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json new file mode 100644 index 0000000..b1c4544 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json new file mode 100644 index 0000000..ea26982 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json new file mode 100644 index 0000000..35b599c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json new file mode 100644 index 0000000..ab63fd6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture_inventory" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json new file mode 100644 index 0000000..66e2dc5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json new file mode 100644 index 0000000..6e5a55a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json new file mode 100644 index 0000000..ef9a17e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json new file mode 100644 index 0000000..fd55598 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json new file mode 100644 index 0000000..1be35ac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json new file mode 100644 index 0000000..66e2dc5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json new file mode 100644 index 0000000..303d361 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json new file mode 100644 index 0000000..7fededd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json new file mode 100644 index 0000000..6e5a55a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json new file mode 100644 index 0000000..b1c8fa0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json new file mode 100644 index 0000000..7b1a5b5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json new file mode 100644 index 0000000..ef9a17e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json new file mode 100644 index 0000000..fc0edab --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json new file mode 100644 index 0000000..8f74c99 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json new file mode 100644 index 0000000..fd55598 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json new file mode 100644 index 0000000..2738a5d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile.json new file mode 100644 index 0000000..f0956ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_light.json new file mode 100644 index 0000000..5ba9188 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_slab.json new file mode 100644 index 0000000..9d74d64 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json new file mode 100644 index 0000000..790e885 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs.json new file mode 100644 index 0000000..8d8798d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json new file mode 100644 index 0000000..799ffeb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json new file mode 100644 index 0000000..baf2a0e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json new file mode 100644 index 0000000..765b068 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json new file mode 100644 index 0000000..3291bfc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json new file mode 100644 index 0000000..beca28c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json new file mode 100644 index 0000000..31be976 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json b/src/old/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json new file mode 100644 index 0000000..7062a8b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/raw_cobalt_ore" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json new file mode 100644 index 0000000..a29c246 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json new file mode 100644 index 0000000..558c94d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json new file mode 100644 index 0000000..555c431 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json new file mode 100644 index 0000000..7b5e259 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json new file mode 100644 index 0000000..4918d1a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json new file mode 100644 index 0000000..86abce9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json new file mode 100644 index 0000000..10ad375 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json new file mode 100644 index 0000000..0578281 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json new file mode 100644 index 0000000..7a3ef60 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json new file mode 100644 index 0000000..a29c246 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json new file mode 100644 index 0000000..5635d39 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json new file mode 100644 index 0000000..4fd4c75 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json new file mode 100644 index 0000000..558c94d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json new file mode 100644 index 0000000..10953ed --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json new file mode 100644 index 0000000..0ecd22d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json new file mode 100644 index 0000000..555c431 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json new file mode 100644 index 0000000..da5db3c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json new file mode 100644 index 0000000..3535310 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json new file mode 100644 index 0000000..7b5e259 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json new file mode 100644 index 0000000..161f0f5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json new file mode 100644 index 0000000..ea746ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json new file mode 100644 index 0000000..4918d1a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json new file mode 100644 index 0000000..7a6cde7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json new file mode 100644 index 0000000..7cff2be --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json new file mode 100644 index 0000000..86abce9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json new file mode 100644 index 0000000..e61786d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json new file mode 100644 index 0000000..95fb75b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json new file mode 100644 index 0000000..10ad375 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json new file mode 100644 index 0000000..823845b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json new file mode 100644 index 0000000..7679d43 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json new file mode 100644 index 0000000..0578281 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json new file mode 100644 index 0000000..f8ddac3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json new file mode 100644 index 0000000..1afb483 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json new file mode 100644 index 0000000..7ad09d2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json new file mode 100644 index 0000000..ff2b074 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json new file mode 100644 index 0000000..a7a0f5e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json new file mode 100644 index 0000000..3b06fc9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json new file mode 100644 index 0000000..f12430f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json new file mode 100644 index 0000000..85a0171 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json new file mode 100644 index 0000000..55c9872 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json new file mode 100644 index 0000000..290dd4f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json new file mode 100644 index 0000000..a51981e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json new file mode 100644 index 0000000..49a3dc8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json new file mode 100644 index 0000000..506a97d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json new file mode 100644 index 0000000..b3f9dd8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json new file mode 100644 index 0000000..56a59a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json new file mode 100644 index 0000000..159fdc6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json new file mode 100644 index 0000000..a9c754b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json new file mode 100644 index 0000000..4c4a6bb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json new file mode 100644 index 0000000..8d2647b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json new file mode 100644 index 0000000..6b6b34d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json new file mode 100644 index 0000000..9d668bb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json new file mode 100644 index 0000000..7faebbb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json new file mode 100644 index 0000000..e5e918b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json new file mode 100644 index 0000000..d63291a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json new file mode 100644 index 0000000..a9a5643 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json new file mode 100644 index 0000000..7a07c05 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json new file mode 100644 index 0000000..fb767ca --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json new file mode 100644 index 0000000..2501ee1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json new file mode 100644 index 0000000..73e7f5b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json new file mode 100644 index 0000000..6d26bc8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json new file mode 100644 index 0000000..cd383ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json new file mode 100644 index 0000000..5891bfb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json new file mode 100644 index 0000000..527f936 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json new file mode 100644 index 0000000..ea6caf5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json new file mode 100644 index 0000000..7a07c05 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json new file mode 100644 index 0000000..2b594fa --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json new file mode 100644 index 0000000..97be829 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json new file mode 100644 index 0000000..fb767ca --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json new file mode 100644 index 0000000..d1b8845 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json new file mode 100644 index 0000000..6a96223 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json new file mode 100644 index 0000000..2501ee1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json new file mode 100644 index 0000000..0ae7738 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json new file mode 100644 index 0000000..889e65c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json new file mode 100644 index 0000000..73e7f5b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json new file mode 100644 index 0000000..4b1d969 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json new file mode 100644 index 0000000..0ccc5e8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json new file mode 100644 index 0000000..6d26bc8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json new file mode 100644 index 0000000..a66e5d1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json new file mode 100644 index 0000000..e8e6d3a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json new file mode 100644 index 0000000..cd383ce --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json new file mode 100644 index 0000000..8845bcb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json new file mode 100644 index 0000000..786152f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json new file mode 100644 index 0000000..5891bfb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json new file mode 100644 index 0000000..e976563 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json new file mode 100644 index 0000000..e310e2f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json new file mode 100644 index 0000000..527f936 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json new file mode 100644 index 0000000..f826628 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json new file mode 100644 index 0000000..8eecf4f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json new file mode 100644 index 0000000..83c748a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json new file mode 100644 index 0000000..23b6325 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json new file mode 100644 index 0000000..4f4af6d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json new file mode 100644 index 0000000..b15ba5e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json new file mode 100644 index 0000000..6bb9f3f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json new file mode 100644 index 0000000..df9c94c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json new file mode 100644 index 0000000..15c45b3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json new file mode 100644 index 0000000..be859ca --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json new file mode 100644 index 0000000..952d869 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json new file mode 100644 index 0000000..07e5c52 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json new file mode 100644 index 0000000..403ce30 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json new file mode 100644 index 0000000..55308ec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json new file mode 100644 index 0000000..b5a55bc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json new file mode 100644 index 0000000..bd09991 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json new file mode 100644 index 0000000..e912507 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json new file mode 100644 index 0000000..f444684 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json new file mode 100644 index 0000000..6764a88 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json new file mode 100644 index 0000000..86aaf62 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json new file mode 100644 index 0000000..57ede3a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json new file mode 100644 index 0000000..6faf0ff --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json new file mode 100644 index 0000000..30e8fa9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json new file mode 100644 index 0000000..8d549c9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json new file mode 100644 index 0000000..845480f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json new file mode 100644 index 0000000..f224b55 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json new file mode 100644 index 0000000..344e9ac --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json new file mode 100644 index 0000000..5a1152c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json new file mode 100644 index 0000000..f405d86 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile.json new file mode 100644 index 0000000..9603739 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_light.json new file mode 100644 index 0000000..37d449c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/red_pool_tile_light" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json new file mode 100644 index 0000000..272b928 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json new file mode 100644 index 0000000..8787d10 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json new file mode 100644 index 0000000..821a24f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..75a3fdb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..1b639c9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json new file mode 100644 index 0000000..9a668c0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json new file mode 100644 index 0000000..3599ce8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json new file mode 100644 index 0000000..ba32cae --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..091d52c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_stairs.json b/src/old/resources/assets/ariasessentials/models/block/red_stairs.json new file mode 100644 index 0000000..c081a99 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/red_stairs_inner.json b/src/old/resources/assets/ariasessentials/models/block/red_stairs_inner.json new file mode 100644 index 0000000..c6bd2e3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/red_stairs_outer.json b/src/old/resources/assets/ariasessentials/models/block/red_stairs_outer.json new file mode 100644 index 0000000..a35fc7d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/red_tile.json b/src/old/resources/assets/ariasessentials/models/block/red_tile.json new file mode 100644 index 0000000..d5c2967 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_tile.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/top", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/red_tile_w_circle", + "side": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/red_tile_br.json b/src/old/resources/assets/ariasessentials/models/block/red_tile_br.json new file mode 100644 index 0000000..9715737 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_tile_br.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red", + "side": "ariasessentials:block/thresholds/blood_red" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/red_tile_to_wall.json b/src/old/resources/assets/ariasessentials/models/block/red_tile_to_wall.json new file mode 100644 index 0000000..3dec861 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_floor_to_wall", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/red_wall_variant_1.json b/src/old/resources/assets/ariasessentials/models/block/red_wall_variant_1.json new file mode 100644 index 0000000..f7dccbc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_wall", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/red_wall_variant_2.json b/src/old/resources/assets/ariasessentials/models/block/red_wall_variant_2.json new file mode 100644 index 0000000..1205523 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/red_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_wall2", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/rotatable.json b/src/old/resources/assets/ariasessentials/models/block/rotatable.json new file mode 100644 index 0000000..1f9fbc3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/rotatable.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/sided.json b/src/old/resources/assets/ariasessentials/models/block/sided.json new file mode 100644 index 0000000..bf01ac5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/sided.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "particle": "#side", + "down": "#top", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json new file mode 100644 index 0000000..a2c6e7c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json new file mode 100644 index 0000000..6c2c7e1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json new file mode 100644 index 0000000..abd8b1f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json new file mode 100644 index 0000000..de3b4ba --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json new file mode 100644 index 0000000..da7a784 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json new file mode 100644 index 0000000..1123074 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json new file mode 100644 index 0000000..9103309 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json new file mode 100644 index 0000000..cd009f7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json new file mode 100644 index 0000000..2dd3468 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json new file mode 100644 index 0000000..a2c6e7c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json new file mode 100644 index 0000000..e45c52a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json new file mode 100644 index 0000000..5f117c1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json new file mode 100644 index 0000000..6c2c7e1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json new file mode 100644 index 0000000..d241a46 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json new file mode 100644 index 0000000..a307c14 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json new file mode 100644 index 0000000..abd8b1f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json new file mode 100644 index 0000000..d3e7924 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json new file mode 100644 index 0000000..e713321 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json new file mode 100644 index 0000000..de3b4ba --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json new file mode 100644 index 0000000..e4a83c7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json new file mode 100644 index 0000000..4176d45 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json new file mode 100644 index 0000000..da7a784 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json new file mode 100644 index 0000000..0041d69 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json new file mode 100644 index 0000000..e7f3413 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json new file mode 100644 index 0000000..1123074 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json new file mode 100644 index 0000000..9824fca --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json new file mode 100644 index 0000000..a394f2a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json new file mode 100644 index 0000000..9103309 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json new file mode 100644 index 0000000..29d759e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json new file mode 100644 index 0000000..aaa6416 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json new file mode 100644 index 0000000..cd009f7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json new file mode 100644 index 0000000..da5c0d3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json new file mode 100644 index 0000000..e73be34 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json new file mode 100644 index 0000000..5ccfcb6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json new file mode 100644 index 0000000..e9d33a2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json new file mode 100644 index 0000000..47b5dd7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json new file mode 100644 index 0000000..ad3507c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json new file mode 100644 index 0000000..1e13784 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json new file mode 100644 index 0000000..a10c7ec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json new file mode 100644 index 0000000..80348cd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json new file mode 100644 index 0000000..4210e44 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json new file mode 100644 index 0000000..f279aaa --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json new file mode 100644 index 0000000..93b7943 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json new file mode 100644 index 0000000..23308a1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json new file mode 100644 index 0000000..023819f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json new file mode 100644 index 0000000..36a5b24 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json new file mode 100644 index 0000000..5b0e232 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json new file mode 100644 index 0000000..c00f1f2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json new file mode 100644 index 0000000..7f95f14 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json new file mode 100644 index 0000000..5208530 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json new file mode 100644 index 0000000..e2cbc96 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json new file mode 100644 index 0000000..cb6ddd8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json new file mode 100644 index 0000000..4604c12 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json new file mode 100644 index 0000000..cb12521 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json new file mode 100644 index 0000000..cb3c42b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json new file mode 100644 index 0000000..3cd7743 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json new file mode 100644 index 0000000..ee73ed8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json new file mode 100644 index 0000000..3a8e76a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json new file mode 100644 index 0000000..e08c599 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json new file mode 100644 index 0000000..4cc1107 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/stable_singularity.json b/src/old/resources/assets/ariasessentials/models/block/stable_singularity.json new file mode 100644 index 0000000..ec540e6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/stable_singularity.json @@ -0,0 +1,321 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "textures": { + "0": "ariasessentials:block/scrubber/stable_singularity_body", + "1": "ariasessentials:block/scrubber/stable_singularity_inner", + "particle": "ariasessentials:block/scrubber/stable_singularity_body" + }, + "elements": [ + { + "from": [10, 14, 2], + "to": [14, 15, 14], + "faces": { + "north": {"uv": [12.5, 6, 14.25, 6.25], "texture": "#0"}, + "east": {"uv": [11, 3, 15, 3.25], "texture": "#0"}, + "south": {"uv": [12.75, 12.25, 14.5, 12.5], "texture": "#0"}, + "west": {"uv": [11, 3.25, 15, 3.5], "texture": "#0"}, + "up": {"uv": [1.75, 4, 0, 0], "texture": "#0"}, + "down": {"uv": [3.5, 0, 1.75, 4], "texture": "#0"} + } + }, + { + "from": [1, 0, 1], + "to": [6, 1, 15], + "faces": { + "north": {"uv": [12.75, 12.5, 14.5, 12.75], "texture": "#0"}, + "east": {"uv": [11, 3.5, 15, 3.75], "texture": "#0"}, + "south": {"uv": [12.75, 12.75, 14.5, 13], "texture": "#0"}, + "west": {"uv": [11, 3.75, 15, 4], "texture": "#0"}, + "up": {"uv": [5.25, 4, 3.5, 0], "texture": "#0"}, + "down": {"uv": [1.75, 4, 0, 8], "texture": "#0"} + } + }, + { + "from": [6, 0, 1], + "to": [10, 1, 6], + "faces": { + "north": {"uv": [5.75, 8, 6.25, 8.25], "texture": "#0"}, + "east": {"uv": [0.5, 13, 2.25, 13.25], "texture": "#0"}, + "south": {"uv": [6.25, 8, 6.75, 8.25], "texture": "#0"}, + "west": {"uv": [6, 13, 7.75, 13.25], "texture": "#0"}, + "up": {"uv": [5, 13.75, 4.5, 12], "texture": "#0"}, + "down": {"uv": [12.5, 4.5, 12, 6.25], "texture": "#0"} + } + }, + { + "from": [6, 0, 10], + "to": [10, 1, 15], + "faces": { + "north": {"uv": [5.75, 8.25, 6.25, 8.5], "texture": "#0"}, + "east": {"uv": [7.75, 13, 9.5, 13.25], "texture": "#0"}, + "south": {"uv": [6.25, 8.25, 6.75, 8.5], "texture": "#0"}, + "west": {"uv": [9.5, 13, 11.25, 13.25], "texture": "#0"}, + "up": {"uv": [5.5, 13.75, 5, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 5.5, 13.75], "texture": "#0"} + } + }, + { + "from": [10, 0, 1], + "to": [15, 1, 15], + "faces": { + "north": {"uv": [12.75, 13, 14.5, 13.25], "texture": "#0"}, + "east": {"uv": [11, 4, 15, 4.25], "texture": "#0"}, + "south": {"uv": [0.5, 13.25, 2.25, 13.5], "texture": "#0"}, + "west": {"uv": [11, 4.25, 15, 4.5], "texture": "#0"}, + "up": {"uv": [3.5, 8, 1.75, 4], "texture": "#0"}, + "down": {"uv": [5.25, 4, 3.5, 8], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [2, 6, 15], + "faces": { + "north": {"uv": [10.25, 13.25, 10.5, 14.75], "texture": "#0"}, + "east": {"uv": [7, 0, 11, 1.5], "texture": "#0"}, + "south": {"uv": [10.5, 13.25, 10.75, 14.75], "texture": "#0"}, + "west": {"uv": [7, 1.5, 11, 3], "texture": "#0"}, + "up": {"uv": [11.25, 8.5, 11, 4.5], "texture": "#0"}, + "down": {"uv": [11.5, 4.5, 11.25, 8.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 11], + "to": [2, 10, 15], + "faces": { + "north": {"uv": [6.75, 8, 7, 8.5], "texture": "#0"}, + "east": {"uv": [4, 8, 5.75, 8.5], "texture": "#0"}, + "south": {"uv": [5.75, 8.5, 6, 9], "texture": "#0"}, + "west": {"uv": [4, 8.5, 5.75, 9], "texture": "#0"}, + "up": {"uv": [2.5, 14.75, 2.25, 13], "texture": "#0"}, + "down": {"uv": [2.75, 13, 2.5, 14.75], "texture": "#0"} + } + }, + { + "from": [1, 10, 2], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [10.75, 13.25, 11, 14.75], "texture": "#0"}, + "east": {"uv": [7, 3, 11, 4.5], "texture": "#0"}, + "south": {"uv": [11, 13.25, 11.25, 14.75], "texture": "#0"}, + "west": {"uv": [7, 4.5, 11, 6], "texture": "#0"}, + "up": {"uv": [11.75, 8.5, 11.5, 4.5], "texture": "#0"}, + "down": {"uv": [12, 4.5, 11.75, 8.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 2], + "to": [2, 10, 6], + "faces": { + "north": {"uv": [6, 8.5, 6.25, 9], "texture": "#0"}, + "east": {"uv": [11.5, 9, 13.25, 9.5], "texture": "#0"}, + "south": {"uv": [6.25, 8.5, 6.5, 9], "texture": "#0"}, + "west": {"uv": [11.5, 9.5, 13.25, 10], "texture": "#0"}, + "up": {"uv": [3, 14.75, 2.75, 13], "texture": "#0"}, + "down": {"uv": [3.25, 13, 3, 14.75], "texture": "#0"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [12.75, 13.25, 13, 14.75], "texture": "#0"}, + "east": {"uv": [7, 6, 11, 7.5], "texture": "#0"}, + "south": {"uv": [13, 13.25, 13.25, 14.75], "texture": "#0"}, + "west": {"uv": [7, 7.5, 11, 9], "texture": "#0"}, + "up": {"uv": [3.75, 16, 3.5, 12], "texture": "#0"}, + "down": {"uv": [4, 12, 3.75, 16], "texture": "#0"} + } + }, + { + "from": [14, 6, 10], + "to": [15, 10, 15], + "faces": { + "north": {"uv": [6.5, 8.5, 6.75, 9], "texture": "#0"}, + "east": {"uv": [11.5, 10, 13.25, 10.5], "texture": "#0"}, + "south": {"uv": [6.75, 8.5, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 12, 7.75, 12.5], "texture": "#0"}, + "up": {"uv": [3.5, 14.75, 3.25, 13], "texture": "#0"}, + "down": {"uv": [6.25, 13.25, 6, 15], "texture": "#0"} + } + }, + { + "from": [14, 6, 1], + "to": [15, 10, 6], + "faces": { + "north": {"uv": [3.5, 9.5, 3.75, 10], "texture": "#0"}, + "east": {"uv": [12, 6.25, 13.75, 6.75], "texture": "#0"}, + "south": {"uv": [3.75, 9.5, 4, 10], "texture": "#0"}, + "west": {"uv": [12, 6.75, 13.75, 7.25], "texture": "#0"}, + "up": {"uv": [6.5, 15, 6.25, 13.25], "texture": "#0"}, + "down": {"uv": [6.75, 13.25, 6.5, 15], "texture": "#0"} + } + }, + { + "from": [14, 1, 1], + "to": [15, 6, 15], + "faces": { + "north": {"uv": [13.25, 13.25, 13.5, 14.75], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 9.5], "texture": "#0"}, + "south": {"uv": [0.5, 13.5, 0.75, 15], "texture": "#0"}, + "west": {"uv": [4, 9, 8, 10.5], "texture": "#0"}, + "up": {"uv": [4.25, 16, 4, 12], "texture": "#0"}, + "down": {"uv": [4.5, 12, 4.25, 16], "texture": "#0"} + } + }, + { + "from": [1, 10, 1], + "to": [14, 15, 2], + "faces": { + "north": {"uv": [8, 9, 11.5, 10.5], "texture": "#0"}, + "east": {"uv": [0.75, 13.5, 1, 15], "texture": "#0"}, + "south": {"uv": [0, 9.5, 3.5, 11], "texture": "#0"}, + "west": {"uv": [1, 13.5, 1.25, 15], "texture": "#0"}, + "up": {"uv": [15.5, 7.5, 12, 7.25], "texture": "#0"}, + "down": {"uv": [15.5, 7.5, 12, 7.75], "texture": "#0"} + } + }, + { + "from": [9, 6, 1], + "to": [14, 10, 2], + "faces": { + "north": {"uv": [0.5, 12.5, 2, 13], "texture": "#0"}, + "east": {"uv": [3.5, 10, 3.75, 10.5], "texture": "#0"}, + "south": {"uv": [2, 12.5, 3.5, 13], "texture": "#0"}, + "west": {"uv": [3.75, 10, 4, 10.5], "texture": "#0"}, + "up": {"uv": [14.75, 10.25, 13.25, 10], "texture": "#0"}, + "down": {"uv": [14.75, 10.25, 13.25, 10.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 1], + "to": [5, 10, 2], + "faces": { + "north": {"uv": [12.5, 4.5, 14, 5], "texture": "#0"}, + "east": {"uv": [10.5, 12.5, 10.75, 13], "texture": "#0"}, + "south": {"uv": [12.5, 5, 14, 5.5], "texture": "#0"}, + "west": {"uv": [10.75, 12.5, 11, 13], "texture": "#0"}, + "up": {"uv": [8.25, 13.75, 6.75, 13.5], "texture": "#0"}, + "down": {"uv": [9.75, 13.5, 8.25, 13.75], "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [14, 6, 2], + "faces": { + "north": {"uv": [3.5, 10.5, 7, 12], "texture": "#0"}, + "east": {"uv": [1.25, 13.5, 1.5, 15], "texture": "#0"}, + "south": {"uv": [7, 10.5, 10.5, 12], "texture": "#0"}, + "west": {"uv": [1.5, 13.5, 1.75, 15], "texture": "#0"}, + "up": {"uv": [11.25, 12.25, 7.75, 12], "texture": "#0"}, + "down": {"uv": [15.5, 7.75, 12, 8], "texture": "#0"} + } + }, + { + "from": [2, 1, 15], + "to": [14, 6, 15], + "faces": { + "north": {"uv": [10.5, 10.5, 14, 12], "texture": "#0"}, + "east": {"uv": [1.75, 13.5, 2, 15], "texture": "#0"}, + "south": {"uv": [0, 11, 3.5, 12.5], "texture": "#0"}, + "west": {"uv": [2, 13.5, 2.25, 15], "texture": "#0"}, + "up": {"uv": [15.5, 8.25, 12, 8], "texture": "#0"}, + "down": {"uv": [15.5, 8.25, 12, 8.5], "texture": "#0"} + } + }, + { + "from": [2, 6, 14], + "to": [6, 10, 15], + "faces": { + "north": {"uv": [12.5, 5.5, 14, 6], "texture": "#0"}, + "east": {"uv": [11, 12.5, 11.25, 13], "texture": "#0"}, + "south": {"uv": [6, 12.5, 7.5, 13], "texture": "#0"}, + "west": {"uv": [13.75, 6.5, 14, 7], "texture": "#0"}, + "up": {"uv": [15, 13.5, 13.5, 13.25], "texture": "#0"}, + "down": {"uv": [15, 13.5, 13.5, 13.75], "texture": "#0"} + } + }, + { + "from": [10, 6, 14], + "to": [14, 10, 15], + "faces": { + "north": {"uv": [7.5, 12.5, 9, 13], "texture": "#0"}, + "east": {"uv": [6.75, 13.75, 7, 14.25], "texture": "#0"}, + "south": {"uv": [9, 12.5, 10.5, 13], "texture": "#0"}, + "west": {"uv": [7, 13.75, 7.25, 14.25], "texture": "#0"}, + "up": {"uv": [6, 14, 4.5, 13.75], "texture": "#0"}, + "down": {"uv": [15.25, 6.25, 13.75, 6.5], "texture": "#0"} + } + }, + { + "from": [2, 10, 14], + "to": [14, 15, 15], + "faces": { + "north": {"uv": [11, 0, 14.5, 1.5], "texture": "#0"}, + "east": {"uv": [9.75, 13.5, 10, 15], "texture": "#0"}, + "south": {"uv": [11, 1.5, 14.5, 3], "texture": "#0"}, + "west": {"uv": [10, 13.5, 10.25, 15], "texture": "#0"}, + "up": {"uv": [14.75, 12.25, 11.25, 12], "texture": "#0"}, + "down": {"uv": [11.25, 12.25, 7.75, 12.5], "texture": "#0"} + } + }, + { + "from": [6, 14, 10], + "to": [10, 15, 14], + "faces": { + "north": {"uv": [13.75, 7, 14.25, 7.25], "texture": "#0"}, + "east": {"uv": [6.75, 13.25, 8.5, 13.5], "texture": "#0"}, + "south": {"uv": [7.25, 13.75, 7.75, 14], "texture": "#0"}, + "west": {"uv": [8.5, 13.25, 10.25, 13.5], "texture": "#0"}, + "up": {"uv": [11.75, 14, 11.25, 12.25], "texture": "#0"}, + "down": {"uv": [12.25, 12.25, 11.75, 14], "texture": "#0"} + } + }, + { + "from": [6, 14, 2], + "to": [10, 15, 6], + "faces": { + "north": {"uv": [7.75, 13.75, 8.25, 14], "texture": "#0"}, + "east": {"uv": [13.25, 9, 15, 9.25], "texture": "#0"}, + "south": {"uv": [8.25, 13.75, 8.75, 14], "texture": "#0"}, + "west": {"uv": [13.25, 9.25, 15, 9.5], "texture": "#0"}, + "up": {"uv": [12.75, 14, 12.25, 12.25], "texture": "#0"}, + "down": {"uv": [0.5, 12.5, 0, 14.25], "texture": "#0"} + } + }, + { + "from": [2, 14, 2], + "to": [6, 15, 14], + "faces": { + "north": {"uv": [13.25, 9.5, 15, 9.75], "texture": "#0"}, + "east": {"uv": [11, 8.5, 15, 8.75], "texture": "#0"}, + "south": {"uv": [13.25, 9.75, 15, 10], "texture": "#0"}, + "west": {"uv": [11, 8.75, 15, 9], "texture": "#0"}, + "up": {"uv": [7, 4, 5.25, 0], "texture": "#0"}, + "down": {"uv": [7, 4, 5.25, 8], "texture": "#0"} + } + }, + { + "name": "inner", + "from": [2, 1, 2], + "to": [14, 13, 14], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "up": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "Outer Panels", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + 24 + ] +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk.json new file mode 100644 index 0000000..5827c0b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_block.bbmodel b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_block.bbmodel new file mode 100644 index 0000000..00c161d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_block.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"steel_catwalk_block","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,0.75,1],"to":[15,0.75,15],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[1,1,15,15],"rotation":90,"texture":1}},"type":"cube","uuid":"d5b862cc-db66-5776-00c3-d7e250d77aa8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,0.25,1],"to":[15,0.25,15],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[1,1,15,15],"texture":1}},"type":"cube","uuid":"d8710ac7-8af2-e56a-7d00-144336126d39"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,1],"to":[1,1,15],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,1,2],"texture":0},"east":{"uv":[0,0,14,2],"texture":0},"south":{"uv":[0,0,1,2],"texture":0},"west":{"uv":[0,0,14,2],"texture":0},"up":{"uv":[0,0,14,1],"rotation":270,"texture":0},"down":{"uv":[0,0,14,1],"rotation":90,"texture":0}},"type":"cube","uuid":"41da8660-914b-a7f1-708a-cdb799d773a7"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,1,1],"autouv":0,"color":4,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,2],"texture":0},"east":{"uv":[0,0,1,2],"texture":0},"south":{"uv":[0,0,16,2],"texture":0},"west":{"uv":[0,0,1,2],"texture":0},"up":{"uv":[0,0,16,1],"texture":0},"down":{"uv":[0,0,16,1],"texture":0}},"type":"cube","uuid":"675f7b18-5bbc-d79a-2461-d288b04f0801"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,15],"to":[16,1,16],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,2],"texture":0},"east":{"uv":[0,0,1,2],"texture":0},"south":{"uv":[0,0,16,2],"texture":0},"west":{"uv":[0,0,1,2],"texture":0},"up":{"uv":[0,0,16,1],"texture":0},"down":{"uv":[0,0,16,1],"texture":0}},"type":"cube","uuid":"02ab1391-435d-963d-dd3d-cd0691203aff"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[15,0,1],"to":[16,1,15],"autouv":0,"color":4,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,1,2],"texture":0},"east":{"uv":[0,0,14,2],"texture":0},"south":{"uv":[0,0,1,2],"texture":0},"west":{"uv":[0,0,14,2],"texture":0},"up":{"uv":[0,0,14,1],"rotation":270,"texture":0},"down":{"uv":[0,0,14,1],"rotation":90,"texture":0}},"type":"cube","uuid":"afc499d0-9445-eb0d-f827-41b2cbde0a7b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,15.25,1],"to":[15,15.25,15],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[1,1,15,15],"rotation":90,"texture":1},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"debdeb87-565d-5777-240a-a5ee8af00b43"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,15.75,1],"to":[15,15.75,15],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[1,1,15,15],"texture":1},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"404a427d-1d1d-6a56-b26f-992c0ba2bad7"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,15,1],"to":[1,16,15],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,1,2],"rotation":180,"texture":0},"east":{"uv":[0,0,14,2],"rotation":180,"texture":0},"south":{"uv":[0,0,1,2],"rotation":180,"texture":0},"west":{"uv":[0,0,14,2],"rotation":180,"texture":0},"up":{"uv":[0,0,14,1],"rotation":90,"texture":0},"down":{"uv":[0,0,14,1],"rotation":270,"texture":0}},"type":"cube","uuid":"3ac103ed-a7a1-7ed1-1b10-22a14d8e21b7"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,15,15],"to":[16,16,16],"autouv":0,"color":4,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,2],"rotation":180,"texture":0},"east":{"uv":[0,0,1,2],"rotation":180,"texture":0},"south":{"uv":[0,0,16,2],"rotation":180,"texture":0},"west":{"uv":[0,0,1,2],"rotation":180,"texture":0},"up":{"uv":[0,0,16,1],"texture":0},"down":{"uv":[0,0,16,1],"texture":0}},"type":"cube","uuid":"6f70a13c-78c9-bd0b-ac3c-dcb8eee75229"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,15,0],"to":[16,16,1],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,2],"rotation":180,"texture":0},"east":{"uv":[0,0,1,2],"rotation":180,"texture":0},"south":{"uv":[0,0,16,2],"rotation":180,"texture":0},"west":{"uv":[0,0,1,2],"rotation":180,"texture":0},"up":{"uv":[0,0,16,1],"texture":0},"down":{"uv":[0,0,16,1],"texture":0}},"type":"cube","uuid":"2470db12-23ff-34ef-2b1e-d4114eebaa6d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[15,15,1],"to":[16,16,15],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,1,2],"rotation":180,"texture":0},"east":{"uv":[0,0,14,2],"rotation":180,"texture":0},"south":{"uv":[0,0,1,2],"rotation":180,"texture":0},"west":{"uv":[0,0,14,2],"rotation":180,"texture":0},"up":{"uv":[0,0,14,1],"rotation":90,"texture":0},"down":{"uv":[0,0,14,1],"rotation":270,"texture":0}},"type":"cube","uuid":"353fedf9-110e-1232-8dad-a39081e58196"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,1,15.25],"to":[15,15,15.25],"autouv":0,"color":5,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[1,1,15,15],"rotation":90,"texture":1},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"2d33172f-d620-6827-f5bd-dab4e3106a38"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,1,15.75],"to":[15,15,15.75],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[1,1,15,15],"texture":1},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"710fbb39-ed40-b71b-c4bc-7ab4558b51b4"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,1,15],"to":[1,15,16],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,12,1],"rotation":90,"texture":0},"east":{"uv":[0,0,12,2],"rotation":90,"texture":0},"south":{"uv":[0,0,12,1],"rotation":90,"texture":0},"west":{"uv":[0,0,12,2],"rotation":270,"texture":0},"up":{"uv":[0,0,1,2],"texture":0},"down":{"uv":[0,0,1,2],"rotation":180,"texture":0}},"type":"cube","uuid":"b071c0c9-d493-5a16-2f50-7b6d7407f1f3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[15,1,15],"to":[16,15,16],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,12,1],"rotation":90,"texture":0},"east":{"uv":[0,0,12,2],"rotation":90,"texture":0},"south":{"uv":[0,0,12,1],"rotation":90,"texture":0},"west":{"uv":[0,0,12,2],"rotation":270,"texture":0},"up":{"uv":[0,0,1,2],"texture":0},"down":{"uv":[0,0,1,2],"rotation":180,"texture":0}},"type":"cube","uuid":"23b77a40-2d6e-32f1-d2e2-6dfc2b5c130c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,1,0.75],"to":[15,15,0.75],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[1,1,15,15],"rotation":90,"texture":1},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"6c5484c4-99d5-931f-8967-0522c2ffb3be"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[1,1,0.25],"to":[15,15,0.25],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[1,1,15,15],"texture":1},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"0a2fc678-a7be-8c2e-12e9-90ef9308cc19"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[15,1,0],"to":[16,15,1],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,12,1],"rotation":90,"texture":0},"east":{"uv":[0,0,12,2],"rotation":270,"texture":0},"south":{"uv":[0,0,12,1],"rotation":90,"texture":0},"west":{"uv":[0,0,12,2],"rotation":90,"texture":0},"up":{"uv":[0,0,1,2],"rotation":180,"texture":0},"down":{"uv":[0,0,1,2],"texture":0}},"type":"cube","uuid":"db3ae7de-f432-a618-ba4c-0dd7eda5cc5a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,1,0],"to":[1,15,1],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,12,1],"rotation":90,"texture":0},"east":{"uv":[0,0,12,2],"rotation":270,"texture":0},"south":{"uv":[0,0,12,1],"rotation":90,"texture":0},"west":{"uv":[0,0,12,2],"rotation":90,"texture":0},"up":{"uv":[0,0,1,2],"rotation":180,"texture":0},"down":{"uv":[0,0,1,2],"texture":0}},"type":"cube","uuid":"2d56fc06-7b14-359a-c3a8-23a89b650c15"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[15.25,1,1],"to":[15.25,15,15],"autouv":0,"color":1,"origin":[8,8,6.5],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[1,1,15,15],"rotation":90,"texture":1},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"56ec864a-65a0-2779-85db-e6a32826f56b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[15.75,1,1],"to":[15.75,15,15],"autouv":0,"color":1,"origin":[8,8,6.5],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[1,1,15,15],"texture":1},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"1f6ee38b-61c4-cd9f-4fad-82a095578e5d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0.75,1,1],"to":[0.75,15,15],"autouv":0,"color":7,"origin":[8,8,6.5],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[1,1,15,15],"rotation":90,"texture":1},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"ac577144-2dea-16db-5bc0-3b386c7ff910"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0.25,1,1],"to":[0.25,15,15],"autouv":0,"color":5,"origin":[8,8,6.5],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[1,1,15,15],"texture":1},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"a500631c-3d00-7301-ed1e-6d3ad36abbaf"}],"outliner":[{"name":"Side","origin":[0,0,0],"color":0,"uuid":"81d1c412-7db3-f104-8e92-2c06fefe9cd5","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Grating","origin":[0,0,0],"color":0,"uuid":"c2800c02-ee64-6468-a001-7d993df8045b","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d5b862cc-db66-5776-00c3-d7e250d77aa8","d8710ac7-8af2-e56a-7d00-144336126d39"]},"41da8660-914b-a7f1-708a-cdb799d773a7","675f7b18-5bbc-d79a-2461-d288b04f0801","02ab1391-435d-963d-dd3d-cd0691203aff","afc499d0-9445-eb0d-f827-41b2cbde0a7b"]},{"name":"Side","origin":[0,0,0],"color":0,"uuid":"4e7087e1-6680-0dac-a641-4e5a864c3424","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Grating","origin":[0,0,0],"color":0,"uuid":"8594076e-e01a-8501-fa0f-827ea535e838","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["debdeb87-565d-5777-240a-a5ee8af00b43","404a427d-1d1d-6a56-b26f-992c0ba2bad7"]},"3ac103ed-a7a1-7ed1-1b10-22a14d8e21b7","6f70a13c-78c9-bd0b-ac3c-dcb8eee75229","2470db12-23ff-34ef-2b1e-d4114eebaa6d","353fedf9-110e-1232-8dad-a39081e58196"]},{"name":"Side","origin":[0,0,0],"color":0,"uuid":"0770e265-6157-fabd-2834-d722f3cc430d","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Grating","origin":[0,0,0],"color":0,"uuid":"a206c57c-5cff-5320-1c7f-3b5ce0f0a659","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["2d33172f-d620-6827-f5bd-dab4e3106a38","710fbb39-ed40-b71b-c4bc-7ab4558b51b4"]},"b071c0c9-d493-5a16-2f50-7b6d7407f1f3","23b77a40-2d6e-32f1-d2e2-6dfc2b5c130c"]},{"name":"Side","origin":[0,0,0],"color":0,"uuid":"9a5756c4-05fc-8a09-c741-0e95dd2b4665","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Grating","origin":[0,0,0],"color":0,"uuid":"ab8d17d5-6f99-71c7-b14c-c544a5c04292","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["6c5484c4-99d5-931f-8967-0522c2ffb3be","0a2fc678-a7be-8c2e-12e9-90ef9308cc19"]},"db3ae7de-f432-a618-ba4c-0dd7eda5cc5a","2d56fc06-7b14-359a-c3a8-23a89b650c15"]},{"name":"Grating","origin":[0,0,0],"color":0,"uuid":"45e2def1-28c5-13cc-e236-a75cb6b5c7c2","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["56ec864a-65a0-2779-85db-e6a32826f56b","1f6ee38b-61c4-cd9f-4fad-82a095578e5d"]},{"name":"Grating","origin":[0,0,0],"color":0,"uuid":"c04aa1d1-f9f1-43f6-a965-4db32dad9705","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["ac577144-2dea-16db-5bc0-3b386c7ff910","a500631c-3d00-7301-ed1e-6d3ad36abbaf"]}],"textures":[{"path":"/run/media/Backups/repos/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/engineersdecor/material/steel_texture.png","name":"steel_texture.png","folder":"block/engineersdecor/material","namespace":"ariasessentials","id":"0","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"d884cd98-5c60-bc37-ab3b-d3595f18c2b3","relative_path":"../../../textures/block/engineersdecor/material/steel_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAGYSURBVDhPVdNXjioxEAVQN2HI8MGKkAgS7H8h5EwPp0bVes+S5VR1Q9muVqtV3el0Sl3Xxfh6vUq2nLfb7VJVVZw/n89i/fl8Yq/abre1hG632wC0Wq0AEqAJdq693+/Yv91uQVotFou61+uVn5+f0u/3y+l0itEaGyBJWjB+O4L7/f6nYrfb1TYEjcfjOEg79oGfz+dQl0mj0Sj2QsFms2kUAIEaB1+m4XBYLpdLkXA4HAIsrRkpDACSdYwSjBglWCtaFhLw9XoNogBYLpc16QAcKJYC2YuAb4Jk6lgAbK5G+/3+7xYwTafT8GV+PB6bIrIzGAwCDLg1AkDGALDgU6IRY6qhIJONLFFHRSj0kBSLhWyk5iMC6GoBzefzmKdNcf8VESILKVOyRIER/J0rHkLyGwuqzqdDzHldyW6fTYmPx6N5hfGQXGP+Bd7yGQucTCbN4wFqj3w2tKiBIpKGeTabNR8lr4wdiW5JAXVxHhayar1ehwLIqi8h0QX8+5mQuH+Azf9wCxLzPwDiTUACJCiw/PL5pH8BMh1qqITbY1AAAAAASUVORK5CYII="},{"path":"/run/media/Backups/repos/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_top.png","name":"steel_catwalk_top.png","folder":"block/engineersdecor/furniture","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"c2e409a6-7a27-518f-b69f-4da3fd52233c","relative_path":"../../../textures/block/engineersdecor/furniture/steel_catwalk_top.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAGqSURBVDhPZVPXjsIwEPTSHvgrToReQv9GegkJhEN3nwUSZc9jMb4TZ8lyvNkyM7uWSqWi2WzWPB8Pk8vnze12M5lMxnCJiMGm7WH9cH8+n+6Uer2uh8NBut2ubrdbf7bbbY2iSKrVqqZpKmEY6mazEdoR55IAQaFQMPv9Xj5KJf36/v5N0mppZO3vwSyGJB5Bp9PR3W7nnVs2GEmHw6EuFgvp9Xq6Xq99cvg7OoCYsxrESSKDwUCXy6U0m02N41gajYYm1t60J/5XLdr0dPJFarWaSlAu6+f5LKHVYGM1INzRaKTz+dwHjcdjnc1mHhG08AiKxaIBvPaLc7/f19Vq5RFNJhOdTqdCO4sAodeAPwmX8GlvWMES262/mlyvV+P43u93g1axpXRiC6kNaTEphHZtPEGYlwbkStUZzDuTg8blcjECJTEHaCFhe6dXUt5ZmUXcHDCIlThp5Px+Mhn83CSCp1E16C85c6i8Fq/+vw8V6P+bRApFzoTNYFA+Ho9OfLuMBEGgefsKMXEMYp/fEdFOhG4OAANPFRuc8LSRGVPGb9y5YMM/bKwfBJ7gvYeNLuwAAAAASUVORK5CYII="}],"display":{"thirdperson_righthand":{"scale":[0.5,0.5,0.5]},"thirdperson_lefthand":{"scale":[0.5,0.5,0.5]},"firstperson_righthand":{"scale":[0.5,0.5,0.5]},"firstperson_lefthand":{"scale":[0.5,0.5,0.5]},"ground":{"scale":[0.25,0.25,0.25]},"gui":{"rotation":[50,0,46],"scale":[0.5,0.5,0.5]},"fixed":{"scale":[0.5,0.5,0.5]}}} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_block.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_block.json new file mode 100644 index 0000000..aba08a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/steel_catwalk_block" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json new file mode 100644 index 0000000..7fa1ed7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..34caa59 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_dr" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..d320c85 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_lr" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..1fde452 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_rr" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_top.json b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_top.json new file mode 100644 index 0000000..cd9e0e1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_catwalk_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_floor_grating.json b/src/old/resources/assets/ariasessentials/models/block/steel_floor_grating.json new file mode 100644 index 0000000..1ac7a6c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_floor_grating.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_floor_grating" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json b/src/old/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json new file mode 100644 index 0000000..272d64d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_floor_grating_top" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_railing.json b/src/old/resources/assets/ariasessentials/models/block/steel_railing.json new file mode 100644 index 0000000..234af68 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_railing.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_railing" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/steel_table.json b/src/old/resources/assets/ariasessentials/models/block/steel_table.json new file mode 100644 index 0000000..944528a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/steel_table.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_table" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/tflipflop.json b/src/old/resources/assets/ariasessentials/models/block/tflipflop.json new file mode 100644 index 0000000..ab49651 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/tflipflop.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/logicgates/tflipflop" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/uncrafter.json b/src/old/resources/assets/ariasessentials/models/block/uncrafter.json new file mode 100644 index 0000000..45b4424 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/uncrafter.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/custommodel/uncrafter" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json b/src/old/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json new file mode 100644 index 0000000..e8b4d15 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/vault_steel_ore_block" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/block/void.json b/src/old/resources/assets/ariasessentials/models/block/void.json new file mode 100644 index 0000000..56346db --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/void.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/void" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/block/whiteout.json b/src/old/resources/assets/ariasessentials/models/block/whiteout.json new file mode 100644 index 0000000..cb12f53 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/block/whiteout.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/white" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/item/aurora_compound.json b/src/old/resources/assets/ariasessentials/models/item/aurora_compound.json new file mode 100644 index 0000000..be0adc8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/aurora_compound.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/deprecated" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/black.json b/src/old/resources/assets/ariasessentials/models/item/black.json new file mode 100644 index 0000000..43fd342 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/black.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/blood_red.json b/src/old/resources/assets/ariasessentials/models/item/blood_red.json new file mode 100644 index 0000000..23383f5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blood_red.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blood_red" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/blue_brick.json b/src/old/resources/assets/ariasessentials/models/item/blue_brick.json new file mode 100644 index 0000000..1713535 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blue_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/blue_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile.json new file mode 100644 index 0000000..bb397c5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_light.json new file mode 100644 index 0000000..670e37d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json new file mode 100644 index 0000000..6ce51fc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json new file mode 100644 index 0000000..8067661 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json new file mode 100644 index 0000000..6530648 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clear_glass_block.json b/src/old/resources/assets/ariasessentials/models/item/clear_glass_block.json new file mode 100644 index 0000000..43fd342 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clear_glass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_block.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_block.json new file mode 100644 index 0000000..fea28c4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_block_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json new file mode 100644 index 0000000..1941abb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json new file mode 100644 index 0000000..970dff1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_slab.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_slab.json new file mode 100644 index 0000000..bddbf0d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json new file mode 100644 index 0000000..87317c7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_block_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json new file mode 100644 index 0000000..7b02d8a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..f9729a1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_stairs_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json new file mode 100644 index 0000000..f06c004 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stairs_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json new file mode 100644 index 0000000..a0efe2a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/clinker_brick_wall.json b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_wall.json new file mode 100644 index 0000000..ac48af8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/clinker_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cobalt_block.json b/src/old/resources/assets/ariasessentials/models/item/cobalt_block.json new file mode 100644 index 0000000..7b70ab8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cobalt_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cobalt_block" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cobalt_ingot.json b/src/old/resources/assets/ariasessentials/models/item/cobalt_ingot.json new file mode 100644 index 0000000..cf8d92d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cobalt_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cobalt_ore.json b/src/old/resources/assets/ariasessentials/models/item/cobalt_ore.json new file mode 100644 index 0000000..3f9db41 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cobalt_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cobalt_ore" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan.json b/src/old/resources/assets/ariasessentials/models/item/cyan.json new file mode 100644 index 0000000..96ff0f6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_brick.json b/src/old/resources/assets/ariasessentials/models/item/cyan_brick.json new file mode 100644 index 0000000..bb3cd03 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/cyan_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile.json new file mode 100644 index 0000000..e988224 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_light.json new file mode 100644 index 0000000..a8e5220 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_slab.json new file mode 100644 index 0000000..5c6d5c0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_stairs.json new file mode 100644 index 0000000..d67131c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_wall.json new file mode 100644 index 0000000..9bf022d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_stairs.json b/src/old/resources/assets/ariasessentials/models/item/cyan_stairs.json new file mode 100644 index 0000000..dd6bbdf --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_stairs" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_tile.json b/src/old/resources/assets/ariasessentials/models/item/cyan_tile.json new file mode 100644 index 0000000..fcee8b6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_tile_br.json b/src/old/resources/assets/ariasessentials/models/item/cyan_tile_br.json new file mode 100644 index 0000000..f5bbd92 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_tile_br.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile_br" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json b/src/old/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json new file mode 100644 index 0000000..0a71f36 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile_to_wall" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json b/src/old/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json new file mode 100644 index 0000000..8bb9041 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_wall_variant_1" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json b/src/old/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json new file mode 100644 index 0000000..671897e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_wall_variant_2" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile.json new file mode 100644 index 0000000..8d78ba1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_light.json new file mode 100644 index 0000000..d494908 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json new file mode 100644 index 0000000..f554d73 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json new file mode 100644 index 0000000..9f46443 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_red_bed.json b/src/old/resources/assets/ariasessentials/models/item/dark_red_bed.json new file mode 100644 index 0000000..9ff068f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_red_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_red_brick.json b/src/old/resources/assets/ariasessentials/models/item/dark_red_brick.json new file mode 100644 index 0000000..47dec36 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_red_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/dark_red_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_red_carpet.json b/src/old/resources/assets/ariasessentials/models/item/dark_red_carpet.json new file mode 100644 index 0000000..11e525e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_red_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_red_carpet" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_red_dye.json b/src/old/resources/assets/ariasessentials/models/item/dark_red_dye.json new file mode 100644 index 0000000..af7f8ab --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_red_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/dark_red_dye" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json b/src/old/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json new file mode 100644 index 0000000..95f62dd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "ariasessentials:block/dark_red_shulker_box" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dark_red_wool.json b/src/old/resources/assets/ariasessentials/models/item/dark_red_wool.json new file mode 100644 index 0000000..72d2daf --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dark_red_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_red_wool" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json b/src/old/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..a71d6d6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deepslate_eternium_ore_block" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json b/src/old/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..81da39a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/deprecated.json b/src/old/resources/assets/ariasessentials/models/item/deprecated.json new file mode 100644 index 0000000..be0adc8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/deprecated.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/deprecated" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json new file mode 100644 index 0000000..8f8e70a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_light.json new file mode 100644 index 0000000..eed1bae --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..c875b79 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..3d5a816 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..1b6223c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile.json new file mode 100644 index 0000000..4673c5c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_cyan_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_light.json new file mode 100644 index 0000000..e608013 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_cyan_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_slab.json new file mode 100644 index 0000000..ffa9427 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_cyan_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_stairs.json new file mode 100644 index 0000000..02b0339 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_cyan_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_wall.json new file mode 100644 index 0000000..fdb4afd --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_cyan_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_cyan_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json new file mode 100644 index 0000000..30c764c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_light.json new file mode 100644 index 0000000..e79fae2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..326aad1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..34dc40a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..0ab3f79 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile.json new file mode 100644 index 0000000..3860d03 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_light.json new file mode 100644 index 0000000..da3889c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json new file mode 100644 index 0000000..17fa1a5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..a4f49d2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json new file mode 100644 index 0000000..9431e23 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json new file mode 100644 index 0000000..4eb9364 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json new file mode 100644 index 0000000..5ae2211 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..b54f233 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..d4f4aad --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..eaf7c2b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/empty_spawn_egg.json b/src/old/resources/assets/ariasessentials/models/item/empty_spawn_egg.json new file mode 100644 index 0000000..e3ce192 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/empty_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/empty_spawn_egg" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/eternium_block.json b/src/old/resources/assets/ariasessentials/models/item/eternium_block.json new file mode 100644 index 0000000..8e9cbe8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/eternium_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/eternium_block" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/eternium_fragment.json b/src/old/resources/assets/ariasessentials/models/item/eternium_fragment.json new file mode 100644 index 0000000..95cb5d3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/eternium_fragment.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_fragment" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/eternium_ingot.json b/src/old/resources/assets/ariasessentials/models/item/eternium_ingot.json new file mode 100644 index 0000000..b96f26a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/eternium_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_ingot" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/eternium_ore.json b/src/old/resources/assets/ariasessentials/models/item/eternium_ore.json new file mode 100644 index 0000000..b1064f7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/eternium_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_ore" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/eternium_ore_block.json b/src/old/resources/assets/ariasessentials/models/item/eternium_ore_block.json new file mode 100644 index 0000000..5f8ec24 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/eternium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/eternium_ore_block" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/eternium_rod.json b/src/old/resources/assets/ariasessentials/models/item/eternium_rod.json new file mode 100644 index 0000000..a6507a6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/eternium_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_rod" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/filthy_blue_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/filthy_blue_pool_tile_light.json new file mode 100644 index 0000000..e74d5d3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/filthy_blue_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_blue_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/filthy_cyan_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/filthy_cyan_pool_tile_light.json new file mode 100644 index 0000000..36519f9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/filthy_cyan_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_cyan_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/filthy_green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/filthy_green_pool_tile_light.json new file mode 100644 index 0000000..10ed33d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/filthy_green_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_green_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/filthy_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/filthy_pool_tile_light.json new file mode 100644 index 0000000..e10fba6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/filthy_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/filthy_red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/filthy_red_pool_tile_light.json new file mode 100644 index 0000000..3a1a28a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/filthy_red_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_red_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/green_brick.json b/src/old/resources/assets/ariasessentials/models/item/green_brick.json new file mode 100644 index 0000000..f519f4d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/green_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/green_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/green_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile.json new file mode 100644 index 0000000..f873f69 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_light.json new file mode 100644 index 0000000..17f2698 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json new file mode 100644 index 0000000..70bf1ab --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json new file mode 100644 index 0000000..ee60ef1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json new file mode 100644 index 0000000..2bffafb --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/ihan_crystal.json b/src/old/resources/assets/ariasessentials/models/item/ihan_crystal.json new file mode 100644 index 0000000..1d9f5c1 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/ihan_crystal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/ihan_crystal" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/light_blue_brick.json b/src/old/resources/assets/ariasessentials/models/item/light_blue_brick.json new file mode 100644 index 0000000..bf87794 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/light_blue_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/light_blue_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/lime_brick.json b/src/old/resources/assets/ariasessentials/models/item/lime_brick.json new file mode 100644 index 0000000..c4a52c9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/lime_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/lime_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/magma_powder.json b/src/old/resources/assets/ariasessentials/models/item/magma_powder.json new file mode 100644 index 0000000..03f798a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/magma_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/magma_powder" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/melted_ender_pearl.json b/src/old/resources/assets/ariasessentials/models/item/melted_ender_pearl.json new file mode 100644 index 0000000..e15010f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/melted_ender_pearl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/melted_ender_pearl" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/metal_bar.json b/src/old/resources/assets/ariasessentials/models/item/metal_bar.json new file mode 100644 index 0000000..96985c0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/metal_bar.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/metal_bar" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/mini_sun.json b/src/old/resources/assets/ariasessentials/models/item/mini_sun.json new file mode 100644 index 0000000..8ab0bb2 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/mini_sun.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/mini_sun" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/mob_capture_ball.json b/src/old/resources/assets/ariasessentials/models/item/mob_capture_ball.json new file mode 100644 index 0000000..d082c00 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/mob_capture_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/mob_capture_ball" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json new file mode 100644 index 0000000..b3dcca4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_door" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json new file mode 100644 index 0000000..3518b07 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_planks_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json new file mode 100644 index 0000000..7c4605c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json new file mode 100644 index 0000000..656dc43 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_stairs_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/panzerglass_block.json b/src/old/resources/assets/ariasessentials/models/item/panzerglass_block.json new file mode 100644 index 0000000..852f3e6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/panzerglass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/panzerglass_block_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/panzerglass_slab.json b/src/old/resources/assets/ariasessentials/models/item/panzerglass_slab.json new file mode 100644 index 0000000..8312f20 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/panzerglass_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/panzerglass_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/partial_item.json b/src/old/resources/assets/ariasessentials/models/item/partial_item.json new file mode 100644 index 0000000..459376f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/partial_item.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/partial_item" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/pool_tile.json new file mode 100644 index 0000000..9db5306 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/pool_tile_light.json new file mode 100644 index 0000000..3bd9f3f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/pool_tile_slab.json new file mode 100644 index 0000000..886bf6b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/pool_tile_stairs.json new file mode 100644 index 0000000..74630dc --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/pool_tile_wall.json new file mode 100644 index 0000000..8eaca96 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/raw_cobalt.json b/src/old/resources/assets/ariasessentials/models/item/raw_cobalt.json new file mode 100644 index 0000000..c7ced34 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/raw_cobalt.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/raw_cobalt" + } +} diff --git a/src/old/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json b/src/old/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json new file mode 100644 index 0000000..a0633c4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/raw_cobalt_ore" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json b/src/old/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json new file mode 100644 index 0000000..b5abf35 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/raw_vault_steel_ore" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete.json new file mode 100644 index 0000000..4c30753 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json new file mode 100644 index 0000000..46db292 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json new file mode 100644 index 0000000..395b6d4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_stairs_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json new file mode 100644 index 0000000..b518834 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..45b67f8 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..d4ab9ae --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_stairs_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json new file mode 100644 index 0000000..318665f --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_brick.json b/src/old/resources/assets/ariasessentials/models/item/red_brick.json new file mode 100644 index 0000000..1a1ce8c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/red_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_pool_tile.json b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile.json new file mode 100644 index 0000000..b3af3c3 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_light.json b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_light.json new file mode 100644 index 0000000..b334fe0 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json new file mode 100644 index 0000000..e1c2dec --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json new file mode 100644 index 0000000..fdc774d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json new file mode 100644 index 0000000..6e6b81c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/red_stairs.json b/src/old/resources/assets/ariasessentials/models/item/red_stairs.json new file mode 100644 index 0000000..42cfaf7 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_stairs" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/red_tile.json b/src/old/resources/assets/ariasessentials/models/item/red_tile.json new file mode 100644 index 0000000..4887ad4 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/red_tile_br.json b/src/old/resources/assets/ariasessentials/models/item/red_tile_br.json new file mode 100644 index 0000000..4ac4d1d --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_tile_br.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile_br" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/red_tile_to_wall.json b/src/old/resources/assets/ariasessentials/models/item/red_tile_to_wall.json new file mode 100644 index 0000000..0c939a6 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_tile_to_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile_to_wall" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/red_wall_variant_1.json b/src/old/resources/assets/ariasessentials/models/item/red_wall_variant_1.json new file mode 100644 index 0000000..a4c9a70 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_wall_variant_1.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_wall_variant_1" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/red_wall_variant_2.json b/src/old/resources/assets/ariasessentials/models/item/red_wall_variant_2.json new file mode 100644 index 0000000..f4d727e --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/red_wall_variant_2.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_wall_variant_2" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/scrubber_frame.json b/src/old/resources/assets/ariasessentials/models/item/scrubber_frame.json new file mode 100644 index 0000000..1c95da5 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/scrubber_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/scrubber_frame" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json b/src/old/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json new file mode 100644 index 0000000..32cd179 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/scrubber_frame_piece" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/singularity.json b/src/old/resources/assets/ariasessentials/models/item/singularity.json new file mode 100644 index 0000000..c18ae5c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/singularity.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/singularity" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/slag_brick_block.json b/src/old/resources/assets/ariasessentials/models/item/slag_brick_block.json new file mode 100644 index 0000000..daaef79 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/slag_brick_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_block_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/slag_brick_slab.json b/src/old/resources/assets/ariasessentials/models/item/slag_brick_slab.json new file mode 100644 index 0000000..79f29f9 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/slag_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/slag_brick_stairs.json b/src/old/resources/assets/ariasessentials/models/item/slag_brick_stairs.json new file mode 100644 index 0000000..37b186b --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/slag_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_stairs_model0" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/slag_brick_wall.json b/src/old/resources/assets/ariasessentials/models/item/slag_brick_wall.json new file mode 100644 index 0000000..6697705 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/slag_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_wall_inventory" +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/tiab.json b/src/old/resources/assets/ariasessentials/models/item/tiab.json new file mode 100644 index 0000000..4103a7a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/tiab.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/tiab" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/void.json b/src/old/resources/assets/ariasessentials/models/item/void.json new file mode 100644 index 0000000..1e5c307 --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/void.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/void" +} diff --git a/src/old/resources/assets/ariasessentials/models/item/white_brick.json b/src/old/resources/assets/ariasessentials/models/item/white_brick.json new file mode 100644 index 0000000..8ce45df --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/white_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/white_brick" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/models/item/whiteout.json b/src/old/resources/assets/ariasessentials/models/item/whiteout.json new file mode 100644 index 0000000..16eb02c --- /dev/null +++ b/src/old/resources/assets/ariasessentials/models/item/whiteout.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/whiteout" +} diff --git a/src/old/resources/assets/ariasessentials/textures/block/black.png b/src/old/resources/assets/ariasessentials/textures/block/black.png new file mode 100644 index 0000000..3c4fc4b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/black.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/blue_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/blue_pool_tile.png new file mode 100644 index 0000000..2119b59 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/blue_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/blue_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/blue_pool_tile_light.png new file mode 100644 index 0000000..eccc64a Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/blue_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/cobalt_block.png b/src/old/resources/assets/ariasessentials/textures/block/cobalt_block.png new file mode 100644 index 0000000..3598330 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/cobalt_block.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/cobalt_ore.png b/src/old/resources/assets/ariasessentials/textures/block/cobalt_ore.png new file mode 100644 index 0000000..16e2ed9 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/cobalt_ore.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png b/src/old/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png new file mode 100644 index 0000000..e2a0430 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png new file mode 100644 index 0000000..265932b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png new file mode 100644 index 0000000..2b16ff9 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png new file mode 100644 index 0000000..e914b79 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/power.png b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/power.png new file mode 100644 index 0000000..8a632c4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/power.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png new file mode 100644 index 0000000..e0ebd8d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/cyan_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/cyan_pool_tile.png new file mode 100644 index 0000000..e913a81 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/cyan_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/cyan_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/cyan_pool_tile_light.png new file mode 100644 index 0000000..c3120f1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/cyan_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dark_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dark_pool_tile.png new file mode 100644 index 0000000..1da9ed2 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dark_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dark_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dark_pool_tile_light.png new file mode 100644 index 0000000..b132aae Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dark_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dark_red_wool.png b/src/old/resources/assets/ariasessentials/textures/block/dark_red_wool.png new file mode 100644 index 0000000..b1125d3 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dark_red_wool.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png b/src/old/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png new file mode 100644 index 0000000..8cba5b7 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/deprecated.png b/src/old/resources/assets/ariasessentials/textures/block/deprecated.png new file mode 100644 index 0000000..e05d9ac Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/deprecated.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png new file mode 100644 index 0000000..876eeba Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png new file mode 100644 index 0000000..4b7ef9a Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_cyan_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_cyan_pool_tile.png new file mode 100644 index 0000000..748b517 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_cyan_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_cyan_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_cyan_pool_tile_light.png new file mode 100644 index 0000000..3672654 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_cyan_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png new file mode 100644 index 0000000..c41257f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile_light.png new file mode 100644 index 0000000..8f4a91e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png new file mode 100644 index 0000000..33dbfd8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_pool_tile_light.png new file mode 100644 index 0000000..4354b65 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_purple_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_purple_pool_tile.png new file mode 100644 index 0000000..4d451a5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_purple_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_purple_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_purple_pool_tile_light.png new file mode 100644 index 0000000..fa4d1fe Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_purple_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png new file mode 100644 index 0000000..3e74f1e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile_light.png new file mode 100644 index 0000000..350c2a3 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_yellow_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_yellow_pool_tile.png new file mode 100644 index 0000000..04f1b70 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_yellow_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/dirty_yellow_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/dirty_yellow_pool_tile_light.png new file mode 100644 index 0000000..03dedf0 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/dirty_yellow_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_pole_side.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_pole_side.png new file mode 100644 index 0000000..52ffba4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_pole_side.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_down_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_down_texture.png new file mode 100644 index 0000000..a999e63 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_down_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_side_texture.png new file mode 100644 index 0000000..6bf1e53 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_up_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_up_texture.png new file mode 100644 index 0000000..74a9b83 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_corner_up_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture.png new file mode 100644 index 0000000..954819e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_downplate_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture.png new file mode 100644 index 0000000..c6c8a7c Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture.png new file mode 100644 index 0000000..79086c7 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_sastor_upplate_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture0.png new file mode 100644 index 0000000..913f102 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture1.png new file mode 100644 index 0000000..946aace Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture2.png new file mode 100644 index 0000000..47d3ed6 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture3.png new file mode 100644 index 0000000..2009db0 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture4.png new file mode 100644 index 0000000..a1a9510 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture5.png new file mode 100644 index 0000000..00aa4e4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture6.png new file mode 100644 index 0000000..32b95b5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture7.png new file mode 100644 index 0000000..b8ba339 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_stained_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture0.png new file mode 100644 index 0000000..e8cb115 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture1.png new file mode 100644 index 0000000..1c83661 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture2.png new file mode 100644 index 0000000..5748e5f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture3.png new file mode 100644 index 0000000..4407081 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture4.png new file mode 100644 index 0000000..9ca5fc8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture5.png new file mode 100644 index 0000000..2b9cf0d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture6.png new file mode 100644 index 0000000..6b69ad8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture7.png new file mode 100644 index 0000000..d348fac Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_top.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_top.png new file mode 100644 index 0000000..90c8a86 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_top.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall0.png new file mode 100644 index 0000000..3495d10 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall1.png new file mode 100644 index 0000000..a3c04a5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall2.png new file mode 100644 index 0000000..340db3d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall3.png new file mode 100644 index 0000000..2cb82ed Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall4.png new file mode 100644 index 0000000..532c131 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall5.png new file mode 100644 index 0000000..6c8d1fa Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall6.png new file mode 100644 index 0000000..35b14c0 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall7.png new file mode 100644 index 0000000..4dea71f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/clinker_brick/clinker_brick_wall7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture0.png new file mode 100644 index 0000000..c0157c1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture1.png new file mode 100644 index 0000000..5645eab Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture2.png new file mode 100644 index 0000000..f1a97db Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture3.png new file mode 100644 index 0000000..6e39b40 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture4.png new file mode 100644 index 0000000..8773119 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture5.png new file mode 100644 index 0000000..c9aab19 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture6.png new file mode 100644 index 0000000..99e6367 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture7.png new file mode 100644 index 0000000..8ee5d60 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture0.png new file mode 100644 index 0000000..e70797d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture1.png new file mode 100644 index 0000000..3874a07 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture2.png new file mode 100644 index 0000000..6d45199 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture3.png new file mode 100644 index 0000000..86b03a8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture4.png new file mode 100644 index 0000000..c701052 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture5.png new file mode 100644 index 0000000..1d343e1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture6.png new file mode 100644 index 0000000..e2663d5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture7.png new file mode 100644 index 0000000..7de4144 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/concrete/rebar_concrete_tile_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_bottom.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_bottom.png new file mode 100644 index 0000000..c625fa5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_bottom.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_side.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_side.png new file mode 100644 index 0000000..2bdc5a8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_side.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_top.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_top.png new file mode 100644 index 0000000..f9fb8d0 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/metal_sliding_door_texture_top.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_bottom.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_bottom.png new file mode 100644 index 0000000..02efe6b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_bottom.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_side.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_side.png new file mode 100644 index 0000000..5d8cc83 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_side.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_top.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_top.png new file mode 100644 index 0000000..ca31842 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/door/old_industrial_door_texture_top.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_side.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_side.png new file mode 100644 index 0000000..8cd5e7b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_side.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_top.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_top.png new file mode 100644 index 0000000..8d6055b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_catwalk_top.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_table_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_table_side_texture.png new file mode 100644 index 0000000..969ff82 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_table_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_table_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_table_top_texture.png new file mode 100644 index 0000000..d007654 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/furniture/steel_table_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture0.png new file mode 100644 index 0000000..da6c6f1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture1.png new file mode 100644 index 0000000..4ef0dcc Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture2.png new file mode 100644 index 0000000..b76fa99 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture3.png new file mode 100644 index 0000000..952253a Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture_inventory.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture_inventory.png new file mode 100644 index 0000000..7e71cf3 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/panzerglass_block_texture_inventory.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/window_glass_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/window_glass_texture.png new file mode 100644 index 0000000..4281eaf Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/glass/window_glass_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_end_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_end_texture.png new file mode 100644 index 0000000..db9e940 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_end_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_side_texture.png new file mode 100644 index 0000000..db55c56 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_top_texture.png new file mode 100644 index 0000000..3d928b5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/hsupport/steel_double_t_support_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture0.png new file mode 100644 index 0000000..8ef8172 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture1.png new file mode 100644 index 0000000..26fe686 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture2.png new file mode 100644 index 0000000..2f9c6aa Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture3.png new file mode 100644 index 0000000..8ea63af Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/industrial_planks_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/steel_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/steel_texture.png new file mode 100644 index 0000000..9584364 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/steel_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_framed_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_framed_texture.png new file mode 100644 index 0000000..63d0ac6 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_framed_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_rough_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_rough_texture.png new file mode 100644 index 0000000..207dc7d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_rough_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_sanded_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_sanded_texture.png new file mode 100644 index 0000000..d3f2b87 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/material/wood_sanded_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thick_steel_pole_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thick_steel_pole_side_texture.png new file mode 100644 index 0000000..ebd2abc Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thick_steel_pole_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thick_steel_pole_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thick_steel_pole_top_texture.png new file mode 100644 index 0000000..a5f670c Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thick_steel_pole_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thin_steel_pole_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thin_steel_pole_side_texture.png new file mode 100644 index 0000000..773c4b9 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thin_steel_pole_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thin_steel_pole_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thin_steel_pole_top_texture.png new file mode 100644 index 0000000..8a14fa4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/thin_steel_pole_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_side_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_side_texture.png new file mode 100644 index 0000000..478d321 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_side_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_support_edges_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_support_edges_texture.png new file mode 100644 index 0000000..54822b4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_support_edges_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_support_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_support_top_texture.png new file mode 100644 index 0000000..15b1eb3 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_support_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_top_texture.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_top_texture.png new file mode 100644 index 0000000..33a66c4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/pole/treated_wood_pole_top_texture.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/roof/dark_shingle_roof.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/roof/dark_shingle_roof.png new file mode 100644 index 0000000..9cbd381 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/roof/dark_shingle_roof.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_pole_side.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_pole_side.png new file mode 100644 index 0000000..ee90d83 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_pole_side.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture0.png new file mode 100644 index 0000000..8378625 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture1.png new file mode 100644 index 0000000..1e56869 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture2.png new file mode 100644 index 0000000..8832f88 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture3.png new file mode 100644 index 0000000..d1edf88 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture4.png new file mode 100644 index 0000000..dea4b97 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture5.png new file mode 100644 index 0000000..baa5672 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture6.png new file mode 100644 index 0000000..6895552 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture7.png new file mode 100644 index 0000000..966aee4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_top.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_top.png new file mode 100644 index 0000000..ed6bf0d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_top.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall0.png new file mode 100644 index 0000000..0e4c306 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall1.png new file mode 100644 index 0000000..22ea4b1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall2.png new file mode 100644 index 0000000..02c3469 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall3.png new file mode 100644 index 0000000..2cf3bd2 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall4.png new file mode 100644 index 0000000..f53b2be Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall5.png new file mode 100644 index 0000000..8d30e34 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall6.png new file mode 100644 index 0000000..c8f210f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall7.png new file mode 100644 index 0000000..4b38037 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/slag_brick/slag_brick_wall7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture0.png new file mode 100644 index 0000000..ad96997 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture1.png new file mode 100644 index 0000000..fb2a4ac Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture2.png new file mode 100644 index 0000000..65c39b9 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture3.png new file mode 100644 index 0000000..4af6edd Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture4.png new file mode 100644 index 0000000..7f45a62 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture5.png new file mode 100644 index 0000000..be4a491 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture6.png new file mode 100644 index 0000000..0434798 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture7.png new file mode 100644 index 0000000..b7d2059 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_dirt_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture0.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture0.png new file mode 100644 index 0000000..d434d80 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture0.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture1.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture1.png new file mode 100644 index 0000000..c03f44a Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture1.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture2.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture2.png new file mode 100644 index 0000000..c8f425b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture3.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture3.png new file mode 100644 index 0000000..742912d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture3.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture4.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture4.png new file mode 100644 index 0000000..48da301 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture4.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture5.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture5.png new file mode 100644 index 0000000..4040c84 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture5.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture6.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture6.png new file mode 100644 index 0000000..d703fc8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture6.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture7.png b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture7.png new file mode 100644 index 0000000..4e5a7a0 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/engineersdecor/soil/dense_grit_sand_texture7.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/eternium_block.png b/src/old/resources/assets/ariasessentials/textures/block/eternium_block.png new file mode 100644 index 0000000..7e75b23 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/eternium_block.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/eternium_ore_block.png b/src/old/resources/assets/ariasessentials/textures/block/eternium_ore_block.png new file mode 100644 index 0000000..2ba5242 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/eternium_ore_block.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_blue_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_blue_pool_tile_light.png new file mode 100644 index 0000000..906f9d6 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_blue_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_cyan_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_cyan_pool_tile_light.png new file mode 100644 index 0000000..56a4452 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_cyan_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_green_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_green_pool_tile_light.png new file mode 100644 index 0000000..c46ce44 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_green_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_pool_tile_light.png new file mode 100644 index 0000000..e8b6fb1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_purple_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_purple_pool_tile_light.png new file mode 100644 index 0000000..1f15610 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_purple_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_red_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_red_pool_tile_light.png new file mode 100644 index 0000000..95281a5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_red_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/filthy_yellow_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/filthy_yellow_pool_tile_light.png new file mode 100644 index 0000000..f2c071a Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/filthy_yellow_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/green_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/green_pool_tile.png new file mode 100644 index 0000000..321a472 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/green_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/green_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/green_pool_tile_light.png new file mode 100644 index 0000000..4213422 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/green_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/mini_sun.png b/src/old/resources/assets/ariasessentials/textures/block/mini_sun.png new file mode 100644 index 0000000..b7be5d2 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/mini_sun.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/pool_tile.png new file mode 100644 index 0000000..2c6e1de Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/pool_tile_light.png new file mode 100644 index 0000000..44e1c24 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/purple_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/purple_pool_tile.png new file mode 100644 index 0000000..acd62e4 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/purple_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/purple_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/purple_pool_tile_light.png new file mode 100644 index 0000000..25b9069 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/purple_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png b/src/old/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png new file mode 100644 index 0000000..3b14cfb Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/red_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/red_pool_tile.png new file mode 100644 index 0000000..b55d0c5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/red_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/red_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/red_pool_tile_light.png new file mode 100644 index 0000000..b3ff099 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/red_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png new file mode 100644 index 0000000..492b4e1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png new file mode 100644 index 0000000..200364e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png new file mode 100644 index 0000000..d7da3f0 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png new file mode 100644 index 0000000..5ca1723 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png new file mode 100644 index 0000000..42a6f1c Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png new file mode 100644 index 0000000..2ef7cdf Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png new file mode 100644 index 0000000..9f2ba1d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png new file mode 100644 index 0000000..e6be8b1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png b/src/old/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png new file mode 100644 index 0000000..c8ceaac Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png new file mode 100644 index 0000000..950ac11 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/cyan.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/cyan.png new file mode 100644 index 0000000..61d4ad3 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/cyan.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png new file mode 100644 index 0000000..202a74b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png new file mode 100644 index 0000000..b9cc00f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png new file mode 100644 index 0000000..1307773 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png new file mode 100644 index 0000000..37d7ddc Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png new file mode 100644 index 0000000..5e5b9fa Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png new file mode 100644 index 0000000..c8ee90b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png new file mode 100644 index 0000000..ca85fc7 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png new file mode 100644 index 0000000..821d386 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png new file mode 100644 index 0000000..bbb14bb Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png new file mode 100644 index 0000000..ea096d3 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png new file mode 100644 index 0000000..05f8b3c Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite new file mode 100644 index 0000000..a14bc75 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png new file mode 100644 index 0000000..f53a8a7 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png new file mode 100644 index 0000000..8477d80 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png new file mode 100644 index 0000000..88ccbb2 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png new file mode 100644 index 0000000..bb0f88b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png new file mode 100644 index 0000000..cf18d04 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png new file mode 100644 index 0000000..8f16e27 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/lime.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/lime.png new file mode 100644 index 0000000..c1af956 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/lime.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/void.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/void.png new file mode 100644 index 0000000..d59329c Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/void.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/thresholds/white.png b/src/old/resources/assets/ariasessentials/textures/block/thresholds/white.png new file mode 100644 index 0000000..a449dec Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/thresholds/white.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/uncrafter.png b/src/old/resources/assets/ariasessentials/textures/block/uncrafter.png new file mode 100644 index 0000000..c3e411f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/uncrafter.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta b/src/old/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta new file mode 100644 index 0000000..e96a96a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "frametime": 20, + "interpolate": true + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png b/src/old/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png new file mode 100644 index 0000000..9d57d10 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite b/src/old/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite new file mode 100644 index 0000000..462c249 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/uncrafter_side.png b/src/old/resources/assets/ariasessentials/textures/block/uncrafter_side.png new file mode 100644 index 0000000..af72d66 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/uncrafter_side.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/yellow_pool_tile.png b/src/old/resources/assets/ariasessentials/textures/block/yellow_pool_tile.png new file mode 100644 index 0000000..eeb763b Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/yellow_pool_tile.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/block/yellow_pool_tile_light.png b/src/old/resources/assets/ariasessentials/textures/block/yellow_pool_tile_light.png new file mode 100644 index 0000000..21c96f5 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/block/yellow_pool_tile_light.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png b/src/old/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png new file mode 100644 index 0000000..1569595 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/blue_brick.png b/src/old/resources/assets/ariasessentials/textures/item/blue_brick.png new file mode 100644 index 0000000..608900e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/blue_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/clone_ball.png b/src/old/resources/assets/ariasessentials/textures/item/clone_ball.png new file mode 100644 index 0000000..6c4337a Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/clone_ball.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/cobalt_ingot.png b/src/old/resources/assets/ariasessentials/textures/item/cobalt_ingot.png new file mode 100644 index 0000000..d92f5b2 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/cobalt_ingot.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/cobalt_nugget.png b/src/old/resources/assets/ariasessentials/textures/item/cobalt_nugget.png new file mode 100644 index 0000000..48d6737 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/cobalt_nugget.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png b/src/old/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png new file mode 100644 index 0000000..c5aae79 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/crucible.png b/src/old/resources/assets/ariasessentials/textures/item/crucible.png new file mode 100644 index 0000000..4c1cb87 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/crucible.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/cyan_brick.png b/src/old/resources/assets/ariasessentials/textures/item/cyan_brick.png new file mode 100644 index 0000000..5309a28 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/cyan_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/dark_blue_brick.png b/src/old/resources/assets/ariasessentials/textures/item/dark_blue_brick.png new file mode 100644 index 0000000..608900e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/dark_blue_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/dark_red_brick.png b/src/old/resources/assets/ariasessentials/textures/item/dark_red_brick.png new file mode 100644 index 0000000..539aab8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/dark_red_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/dark_red_dye.png b/src/old/resources/assets/ariasessentials/textures/item/dark_red_dye.png new file mode 100644 index 0000000..c42d1cb Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/dark_red_dye.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/deprecated.png b/src/old/resources/assets/ariasessentials/textures/item/deprecated.png new file mode 100644 index 0000000..ccce825 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/deprecated.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png b/src/old/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png new file mode 100644 index 0000000..b650de1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/encased_singularity.png b/src/old/resources/assets/ariasessentials/textures/item/encased_singularity.png new file mode 100644 index 0000000..216367e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/encased_singularity.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/eternium_dust.png b/src/old/resources/assets/ariasessentials/textures/item/eternium_dust.png new file mode 100644 index 0000000..db71805 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/eternium_dust.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/eternium_fragment.png b/src/old/resources/assets/ariasessentials/textures/item/eternium_fragment.png new file mode 100644 index 0000000..bc03c74 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/eternium_fragment.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/eternium_ingot.png b/src/old/resources/assets/ariasessentials/textures/item/eternium_ingot.png new file mode 100644 index 0000000..55c48ec Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/eternium_ingot.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/eternium_ore.png b/src/old/resources/assets/ariasessentials/textures/item/eternium_ore.png new file mode 100644 index 0000000..9db390f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/eternium_ore.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/eternium_rod.png b/src/old/resources/assets/ariasessentials/textures/item/eternium_rod.png new file mode 100644 index 0000000..9b6e200 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/eternium_rod.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/green_brick.png b/src/old/resources/assets/ariasessentials/textures/item/green_brick.png new file mode 100644 index 0000000..857e6fd Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/green_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/ihan_crystal.png b/src/old/resources/assets/ariasessentials/textures/item/ihan_crystal.png new file mode 100644 index 0000000..18d53b7 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/ihan_crystal.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/light_blue_brick.png b/src/old/resources/assets/ariasessentials/textures/item/light_blue_brick.png new file mode 100644 index 0000000..86a7526 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/light_blue_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/lime_brick.png b/src/old/resources/assets/ariasessentials/textures/item/lime_brick.png new file mode 100644 index 0000000..f44af7d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/lime_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/magma_powder.png b/src/old/resources/assets/ariasessentials/textures/item/magma_powder.png new file mode 100644 index 0000000..3365a22 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/magma_powder.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png b/src/old/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png new file mode 100644 index 0000000..f617ca8 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/metal_bar.png b/src/old/resources/assets/ariasessentials/textures/item/metal_bar.png new file mode 100644 index 0000000..16d4335 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/metal_bar.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/mob_capture_ball.png b/src/old/resources/assets/ariasessentials/textures/item/mob_capture_ball.png new file mode 100644 index 0000000..1569595 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/mob_capture_ball.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/partial_item.png b/src/old/resources/assets/ariasessentials/textures/item/partial_item.png new file mode 100644 index 0000000..b08deca Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/partial_item.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/raw_cobalt.png b/src/old/resources/assets/ariasessentials/textures/item/raw_cobalt.png new file mode 100644 index 0000000..9b970af Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/raw_cobalt.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png b/src/old/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png new file mode 100644 index 0000000..228457d Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/red_brick.png b/src/old/resources/assets/ariasessentials/textures/item/red_brick.png new file mode 100644 index 0000000..5148c05 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/red_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/scrubber_frame.png b/src/old/resources/assets/ariasessentials/textures/item/scrubber_frame.png new file mode 100644 index 0000000..e7ea290 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/scrubber_frame.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png b/src/old/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png new file mode 100644 index 0000000..ff45339 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/singularity.aseprite b/src/old/resources/assets/ariasessentials/textures/item/singularity.aseprite new file mode 100644 index 0000000..49657ab Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/singularity.aseprite differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/singularity.png b/src/old/resources/assets/ariasessentials/textures/item/singularity.png new file mode 100644 index 0000000..b33d742 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/singularity.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/super_heated_crucible.png b/src/old/resources/assets/ariasessentials/textures/item/super_heated_crucible.png new file mode 100644 index 0000000..763ba9f Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/super_heated_crucible.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/tiab.aseprite b/src/old/resources/assets/ariasessentials/textures/item/tiab.aseprite new file mode 100644 index 0000000..01d1501 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/tiab.aseprite differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/tiab.png b/src/old/resources/assets/ariasessentials/textures/item/tiab.png new file mode 100644 index 0000000..6ee8853 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/tiab.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/tiab.png.mcmeta b/src/old/resources/assets/ariasessentials/textures/item/tiab.png.mcmeta new file mode 100644 index 0000000..5cc283a --- /dev/null +++ b/src/old/resources/assets/ariasessentials/textures/item/tiab.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "frametime": 2, + "interpolate": true + } +} \ No newline at end of file diff --git a/src/old/resources/assets/ariasessentials/textures/item/white_brick.aseprite b/src/old/resources/assets/ariasessentials/textures/item/white_brick.aseprite new file mode 100644 index 0000000..dd54811 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/white_brick.aseprite differ diff --git a/src/old/resources/assets/ariasessentials/textures/item/white_brick.png b/src/old/resources/assets/ariasessentials/textures/item/white_brick.png new file mode 100644 index 0000000..ca40424 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/item/white_brick.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/mob_effect/flight.png b/src/old/resources/assets/ariasessentials/textures/mob_effect/flight.png new file mode 100644 index 0000000..380d0c1 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/mob_effect/flight.png differ diff --git a/src/old/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite b/src/old/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite new file mode 100644 index 0000000..e8e6015 Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite differ diff --git a/src/old/resources/assets/ariasessentials/textures/mob_effect/seal.png b/src/old/resources/assets/ariasessentials/textures/mob_effect/seal.png new file mode 100644 index 0000000..08d078e Binary files /dev/null and b/src/old/resources/assets/ariasessentials/textures/mob_effect/seal.png differ diff --git a/src/old/resources/assets/libzontreck/lang/en_us.json b/src/old/resources/assets/libzontreck/lang/en_us.json new file mode 100644 index 0000000..6edf1bb --- /dev/null +++ b/src/old/resources/assets/libzontreck/lang/en_us.json @@ -0,0 +1,9 @@ +{ + "itemGroup.tabs.libzontreck": "Aria's Library", + + "item.libzontreck.chestgui_add": "Add", + "item.libzontreck.chestgui_remove": "Remove", + "item.libzontreck.chestgui_back": "Previous Page", + "item.libzontreck.chestgui_forward": "Next Page", + "item.libzontreck.chestgui_reset": "Reset" +} \ No newline at end of file diff --git a/src/old/resources/assets/libzontreck/models/item/chestgui_add.json b/src/old/resources/assets/libzontreck/models/item/chestgui_add.json new file mode 100644 index 0000000..f4d7910 --- /dev/null +++ b/src/old/resources/assets/libzontreck/models/item/chestgui_add.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_add" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/libzontreck/models/item/chestgui_back.json b/src/old/resources/assets/libzontreck/models/item/chestgui_back.json new file mode 100644 index 0000000..5f591c7 --- /dev/null +++ b/src/old/resources/assets/libzontreck/models/item/chestgui_back.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_back" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/libzontreck/models/item/chestgui_forward.json b/src/old/resources/assets/libzontreck/models/item/chestgui_forward.json new file mode 100644 index 0000000..25bf73c --- /dev/null +++ b/src/old/resources/assets/libzontreck/models/item/chestgui_forward.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_forward" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/libzontreck/models/item/chestgui_remove.json b/src/old/resources/assets/libzontreck/models/item/chestgui_remove.json new file mode 100644 index 0000000..1dc6f1d --- /dev/null +++ b/src/old/resources/assets/libzontreck/models/item/chestgui_remove.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_remove" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/libzontreck/models/item/chestgui_reset.json b/src/old/resources/assets/libzontreck/models/item/chestgui_reset.json new file mode 100644 index 0000000..b2052c8 --- /dev/null +++ b/src/old/resources/assets/libzontreck/models/item/chestgui_reset.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_reset" + } +} \ No newline at end of file diff --git a/src/old/resources/assets/libzontreck/textures/gui/chest_gui.png b/src/old/resources/assets/libzontreck/textures/gui/chest_gui.png new file mode 100644 index 0000000..b3e27f2 Binary files /dev/null and b/src/old/resources/assets/libzontreck/textures/gui/chest_gui.png differ diff --git a/src/old/resources/assets/libzontreck/textures/item/chestgui_add.png b/src/old/resources/assets/libzontreck/textures/item/chestgui_add.png new file mode 100644 index 0000000..5c06a63 Binary files /dev/null and b/src/old/resources/assets/libzontreck/textures/item/chestgui_add.png differ diff --git a/src/old/resources/assets/libzontreck/textures/item/chestgui_back.png b/src/old/resources/assets/libzontreck/textures/item/chestgui_back.png new file mode 100644 index 0000000..abdeb0e Binary files /dev/null and b/src/old/resources/assets/libzontreck/textures/item/chestgui_back.png differ diff --git a/src/old/resources/assets/libzontreck/textures/item/chestgui_forward.png b/src/old/resources/assets/libzontreck/textures/item/chestgui_forward.png new file mode 100644 index 0000000..4da62d2 Binary files /dev/null and b/src/old/resources/assets/libzontreck/textures/item/chestgui_forward.png differ diff --git a/src/old/resources/assets/libzontreck/textures/item/chestgui_remove.png b/src/old/resources/assets/libzontreck/textures/item/chestgui_remove.png new file mode 100644 index 0000000..191a5ed Binary files /dev/null and b/src/old/resources/assets/libzontreck/textures/item/chestgui_remove.png differ diff --git a/src/old/resources/assets/libzontreck/textures/item/chestgui_reset.png b/src/old/resources/assets/libzontreck/textures/item/chestgui_reset.png new file mode 100644 index 0000000..f033773 Binary files /dev/null and b/src/old/resources/assets/libzontreck/textures/item/chestgui_reset.png differ diff --git a/src/old/resources/data/ariasessentials/dimension/builder.json b/src/old/resources/data/ariasessentials/dimension/builder.json new file mode 100644 index 0000000..b4b1501 --- /dev/null +++ b/src/old/resources/data/ariasessentials/dimension/builder.json @@ -0,0 +1,11 @@ +{ + "type": "ariasessentials:builder", + "generator": { + "type": "minecraft:noise", + "settings": "ariasessentials:builder", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + } + } +} diff --git a/src/old/resources/data/ariasessentials/dimension/resource.json b/src/old/resources/data/ariasessentials/dimension/resource.json new file mode 100644 index 0000000..77b8acd --- /dev/null +++ b/src/old/resources/data/ariasessentials/dimension/resource.json @@ -0,0 +1,205029 @@ +{ + "type": "ariasessentials:resource", + "generator": { + "type": "minecraft:noise", + "settings": "minecraft:overworld", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.2, + -1.05 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.2, + -1.05 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft: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.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.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft: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.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.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft: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.9333 + ], + "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.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft: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.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.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "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:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + 0.8, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": [ + 0.2, + 0.9 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + 0.7, + 1 + ], + "continentalness": [ + -1, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": [ + 0.2, + 0.9 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1.1, + "offset": 0 + } + } + ] + } + } +} diff --git a/src/old/resources/data/ariasessentials/dimension_type/builder.json b/src/old/resources/data/ariasessentials/dimension_type/builder.json new file mode 100644 index 0000000..56f4a80 --- /dev/null +++ b/src/old/resources/data/ariasessentials/dimension_type/builder.json @@ -0,0 +1,19 @@ +{ + "ultrawarm": false, + "natural": false, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": false, + "has_raids": false, + "has_skylight": true, + "has_ceiling": false, + "coordinate_scale": 1, + "ambient_light": 1, + "logical_height": 384, + "effects": "minecraft:the_end", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -64, + "height": 384, + "monster_spawn_light_level": 0, + "monster_spawn_block_light_limit": 0 +} diff --git a/src/old/resources/data/ariasessentials/dimension_type/resource.json b/src/old/resources/data/ariasessentials/dimension_type/resource.json new file mode 100644 index 0000000..3ae6509 --- /dev/null +++ b/src/old/resources/data/ariasessentials/dimension_type/resource.json @@ -0,0 +1,20 @@ +{ + "ultrawarm": false, + "natural": true, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": false, + "has_raids": true, + "has_skylight": false, + "has_ceiling": false, + "coordinate_scale": 16, + "ambient_light": 1, + "fixed_time": 1, + "logical_height": 384, + "effects": "minecraft:the_end", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -64, + "height": 384, + "monster_spawn_light_level": 0, + "monster_spawn_block_light_limit": 0 +} diff --git a/src/old/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json b/src/old/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json new file mode 100644 index 0000000..18e2942 --- /dev/null +++ b/src/old/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "features": ["ariasessentials:eternium_oregen_overworld"], + "biomes": "#is_overworld", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/blood_red.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/blood_red.json new file mode 100644 index 0000000..d8b6a6f --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/blood_red.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blood_red" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blood_red" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json new file mode 100644 index 0000000..f56bfe1 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_light.json new file mode 100644 index 0000000..cc5ca34 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json new file mode 100644 index 0000000..747ea03 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:blue_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:blue_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json new file mode 100644 index 0000000..e7c2814 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_block.json new file mode 100644 index 0000000..f2431da --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_slab.json new file mode 100644 index 0000000..193f783 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:clinker_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:clinker_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_block.json new file mode 100644 index 0000000..38a8a4c --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_stained_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_stained_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_slab.json new file mode 100644 index 0000000..0bfdc30 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:clinker_brick_stained_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:clinker_brick_stained_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_stained_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..33662ea --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stained_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_stained_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_stained_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stairs.json new file mode 100644 index 0000000..16f0b79 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_wall.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_wall.json new file mode 100644 index 0000000..8acdff6 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_wall" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan.json new file mode 100644 index 0000000..1a91675 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile.json new file mode 100644 index 0000000..3e43393 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_light.json new file mode 100644 index 0000000..cf7a4db --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_slab.json new file mode 100644 index 0000000..264be42 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:cyan_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:cyan_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_stairs.json new file mode 100644 index 0000000..c8471eb --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json new file mode 100644 index 0000000..00a7616 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json new file mode 100644 index 0000000..de18727 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json new file mode 100644 index 0000000..a83f35b --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile_br" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile_br" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json new file mode 100644 index 0000000..47f76ae --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile_to_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile_to_wall" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json new file mode 100644 index 0000000..8601552 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_wall_variant_1" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_wall_variant_1" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json new file mode 100644 index 0000000..6e81237 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_wall_variant_2" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_wall_variant_2" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json new file mode 100644 index 0000000..d2fb74f --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_light.json new file mode 100644 index 0000000..d98a3dd --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json new file mode 100644 index 0000000..5370c2f --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dark_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dark_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json new file mode 100644 index 0000000..9ae067e --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json new file mode 100644 index 0000000..7c85bd2 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_red_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_red_carpet" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json new file mode 100644 index 0000000..4d9b6aa --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_red_wool" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..7e42828 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:deepslate_eternium_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:eternium_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/deepslate_eternium_ore_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json new file mode 100644 index 0000000..9c3f9e8 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_light.json new file mode 100644 index 0000000..97f41b6 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..88002da --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_blue_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_blue_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..b5a8f14 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile.json new file mode 100644 index 0000000..ac84268 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_cyan_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_cyan_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_light.json new file mode 100644 index 0000000..916b8c4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_cyan_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_cyan_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_slab.json new file mode 100644 index 0000000..33a561d --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_cyan_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_cyan_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_cyan_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_stairs.json new file mode 100644 index 0000000..c86807f --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_cyan_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_cyan_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_cyan_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json new file mode 100644 index 0000000..b489b11 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_light.json new file mode 100644 index 0000000..3bc3ea3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..47a8222 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_green_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_green_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..5665546 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json new file mode 100644 index 0000000..50ec4cb --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_light.json new file mode 100644 index 0000000..6a2e0f8 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json new file mode 100644 index 0000000..8656feb --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..4fe0dd2 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json new file mode 100644 index 0000000..b95aef1 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_light.json new file mode 100644 index 0000000..78875e8 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..05b10d8 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_red_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_red_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..4c608d4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json new file mode 100644 index 0000000..9015005 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:eternium_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/eternium_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json new file mode 100644 index 0000000..29c4da3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:eternium_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:eternium_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/eternium_ore_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_tile_light.json new file mode 100644 index 0000000..e02caf2 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_blue_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_blue_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_cyan_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_cyan_pool_tile_light.json new file mode 100644 index 0000000..fac1824 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_cyan_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_cyan_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_cyan_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_tile_light.json new file mode 100644 index 0000000..e5a4bf0 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_green_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_green_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_tile_light.json new file mode 100644 index 0000000..8ea7380 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_tile_light.json new file mode 100644 index 0000000..daa6f5a --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_red_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_red_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json new file mode 100644 index 0000000..56ff231 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_light.json new file mode 100644 index 0000000..ac9604c --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json new file mode 100644 index 0000000..a486224 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:green_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:green_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json new file mode 100644 index 0000000..be338ce --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/mini_sun.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/mini_sun.json new file mode 100644 index 0000000..396ed69 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/mini_sun.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:mini_sun" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/mini_sun" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_door.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_door.json new file mode 100644 index 0000000..db50789 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "ariasessentials:old_industrial_wood_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "ariasessentials:old_industrial_wood_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/old_industrial_wood_door" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_planks.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_planks.json new file mode 100644 index 0000000..f632593 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:old_industrial_wood_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/old_industrial_wood_planks" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_slab.json new file mode 100644 index 0000000..385d258 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:old_industrial_wood_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:old_industrial_wood_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/old_industrial_wood_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_stairs.json new file mode 100644 index 0000000..9d4d7ef --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/old_industrial_wood_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:old_industrial_wood_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/old_industrial_wood_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/panzerglass_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/panzerglass_block.json new file mode 100644 index 0000000..f76b27e --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/panzerglass_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:panzerglass_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/panzerglass_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/panzerglass_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/panzerglass_slab.json new file mode 100644 index 0000000..6905dff --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/panzerglass_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:panzerglass_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:panzerglass_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/panzerglass_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json new file mode 100644 index 0000000..d889612 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_light.json new file mode 100644 index 0000000..918c1fc --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json new file mode 100644 index 0000000..64f9aa4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json new file mode 100644 index 0000000..329c156 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json new file mode 100644 index 0000000..552e5ce --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:pool_tile_wall", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:pool_tile_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_wall" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete.json new file mode 100644 index 0000000..24776cd --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:rebar_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_slab.json new file mode 100644 index 0000000..246894e --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:rebar_concrete_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:rebar_concrete_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_stairs.json new file mode 100644 index 0000000..3adc79b --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:rebar_concrete_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile.json new file mode 100644 index 0000000..264e282 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:rebar_concrete_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..82ce2e4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:rebar_concrete_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:rebar_concrete_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..524d94a --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:rebar_concrete_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_wall.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_wall.json new file mode 100644 index 0000000..5ca9667 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/rebar_concrete_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:rebar_concrete_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/rebar_concrete_wall" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json new file mode 100644 index 0000000..eef2727 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_light.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_light.json new file mode 100644 index 0000000..18dd6bc --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_light" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json new file mode 100644 index 0000000..36a67d8 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:red_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:red_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json new file mode 100644 index 0000000..17d55ae --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json new file mode 100644 index 0000000..48d5d2d --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile.json new file mode 100644 index 0000000..07caedf --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json new file mode 100644 index 0000000..64a584d --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile_br" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile_br" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json new file mode 100644 index 0000000..ebbce07 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile_to_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile_to_wall" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json new file mode 100644 index 0000000..abdde10 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_wall_variant_1" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_wall_variant_1" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json new file mode 100644 index 0000000..1e8c416 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_wall_variant_2" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_wall_variant_2" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_block.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_block.json new file mode 100644 index 0000000..b076ed7 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:slag_brick_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/slag_brick_block" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_slab.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_slab.json new file mode 100644 index 0000000..057e29e --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:slag_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:slag_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/slag_brick_slab" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_stairs.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_stairs.json new file mode 100644 index 0000000..619085a --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:slag_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/slag_brick_stairs" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_wall.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_wall.json new file mode 100644 index 0000000..8c35559 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/slag_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:slag_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/slag_brick_wall" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/void.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/void.json new file mode 100644 index 0000000..beb2118 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/void.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:void" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/void" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/loot_tables/blocks/whiteout.json b/src/old/resources/data/ariasessentials/loot_tables/blocks/whiteout.json new file mode 100644 index 0000000..d253f21 --- /dev/null +++ b/src/old/resources/data/ariasessentials/loot_tables/blocks/whiteout.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:whiteout" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/whiteout" +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/blue_brick.json b/src/old/resources/data/ariasessentials/recipes/blue_brick.json new file mode 100644 index 0000000..7393437 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/blue_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:blue_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json b/src/old/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json new file mode 100644 index 0000000..3641ee4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "tag": "forge:brimstone" + } + ], + "result": { + "item": "mekanism:sulfur_dust", + "count": 1 + } + } \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/crushing_brimstone.json b/src/old/resources/data/ariasessentials/recipes/crushing_brimstone.json new file mode 100644 index 0000000..6dfd300 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/crushing_brimstone.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:crushing", + "input": { + "ingredient": { + "tag": "forge:brimstone" + } + }, + "output": { + "item": "mekanism:dust_sulfur", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/cyan_brick.json b/src/old/resources/data/ariasessentials/recipes/cyan_brick.json new file mode 100644 index 0000000..735ac43 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/cyan_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:cyan_dye" + } + ], + "result": { + "item": "ariasessentials:cyan_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/dark_red_brick.json b/src/old/resources/data/ariasessentials/recipes/dark_red_brick.json new file mode 100644 index 0000000..a1d1e4c --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/dark_red_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "ariasessentials:dark_red_dye" + } + ], + "result": { + "item": "ariasessentials:dark_red_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/dark_red_dye.json b/src/old/resources/data/ariasessentials/recipes/dark_red_dye.json new file mode 100644 index 0000000..41e39a9 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/dark_red_dye.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_dye" + }, + { + "item": "minecraft:black_dye" + } + ], + "result": { + "item": "ariasessentials:dark_red_dye", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json b/src/old/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json new file mode 100644 index 0000000..9c4ea37 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "carpet", + "ingredients": [ + { + "item": "ariasessentials:dark_red_dye" + }, + [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "minecraft:blue_carpet" + }, + { + "item": "minecraft:brown_carpet" + }, + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "minecraft:gray_carpet" + }, + { + "item": "minecraft:green_carpet" + }, + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "minecraft:lime_carpet" + }, + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "minecraft:orange_carpet" + }, + { + "item": "minecraft:pink_carpet" + }, + { + "item": "minecraft:purple_carpet" + }, + { + "item": "minecraft:red_carpet" + }, + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "minecraft:white_carpet" + } + ] + ], + "result": { + "item": "ariasessentials:dark_red_carpet" + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/dye_dark_red_wool.json b/src/old/resources/data/ariasessentials/recipes/dye_dark_red_wool.json new file mode 100644 index 0000000..dd22f01 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/dye_dark_red_wool.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + { + "item": "ariasessentials:dark_red_dye" + }, + [ + { + "item": "minecraft:black_wool" + }, + { + "item": "minecraft:blue_wool" + }, + { + "item": "minecraft:brown_wool" + }, + { + "item": "minecraft:cyan_wool" + }, + { + "item": "minecraft:gray_wool" + }, + { + "item": "minecraft:green_wool" + }, + { + "item": "minecraft:light_blue_wool" + }, + { + "item": "minecraft:light_gray_wool" + }, + { + "item": "minecraft:lime_wool" + }, + { + "item": "minecraft:magenta_wool" + }, + { + "item": "minecraft:orange_wool" + }, + { + "item": "minecraft:pink_wool" + }, + { + "item": "minecraft:purple_wool" + }, + { + "item": "minecraft:yellow_wool" + }, + { + "item": "minecraft:white_wool" + }, + { + "item": "minecraft:red_wool" + } + ] + ], + "result": { + "item": "ariasessentials:dark_red_wool" + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/empty_spawn_egg.json b/src/old/resources/data/ariasessentials/recipes/empty_spawn_egg.json new file mode 100644 index 0000000..fa0a4b2 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/empty_spawn_egg.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CC", + "CC" + ], + "key": { + "C": { + "item": "minecraft:egg" + } + }, + "result": { + "item": "ariasessentials:empty_spawn_egg", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_recipe.json new file mode 100644 index 0000000..02aeead --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_recipe.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "ANA", + "BAB" + ], + "key": { + "B": { + "item": "minecraft:brick" + }, + "A": { + "tag": "ariasessentials:brick_ingots" + }, + "N": { + "item": "minecraft:bricks" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_block", + "count": 8 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_sastor_corner_block_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_sastor_corner_block_recipe.json new file mode 100644 index 0000000..c166ad1 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_sastor_corner_block_recipe.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BS", + "SB" + ], + "key": { + "B": { + "item": "ariasessentials:clinker_brick_block" + }, + "S": { + "item": "minecraft:sandstone_stairs" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_sastor_corner_block", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_slab_recipe.json new file mode 100644 index 0000000..159b9dd --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_slab_recipe.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:clinker_brick_block" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_slab_stonecutting.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_slab_stonecutting.json new file mode 100644 index 0000000..cc89f88 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_slab_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "ariasessentials:clinker_brick_block" + }, + "result": "ariasessentials:clinker_brick_slab", + "count": 2 +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_block_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_block_recipe.json new file mode 100644 index 0000000..c3e51d4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_block_recipe.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:clinker_brick_block" + }, + { + "item": "minecraft:dirt" + } + ], + "result": { + "item": "ariasessentials:clinker_brick_stained_block" + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_block_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_block_recipe_decompose.json new file mode 100644 index 0000000..9498de6 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_block_recipe_decompose.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:clinker_brick_stained_block" + } + ], + "result": { + "item": "ariasessentials:clinker_brick_block" + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_slab_recipe.json new file mode 100644 index 0000000..9761eac --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_slab_recipe.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:clinker_brick_stained_block" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_stained_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_slab_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_slab_recipe_decompose.json new file mode 100644 index 0000000..5792c09 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_slab_recipe_decompose.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "B", + "B" + ], + "key": { + "B": { "item": "ariasessentials:clinker_brick_stained_slab" } + }, + "result": { + "item": "ariasessentials:clinker_brick_stained_block", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_stairs_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_stairs_recipe.json new file mode 100644 index 0000000..9e47a4a --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stained_stairs_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C ", + "CC ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:clinker_brick_stained_block" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_stained_stairs", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_recipe.json new file mode 100644 index 0000000..08c3b43 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C ", + "CC ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:clinker_brick_block" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_stairs", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_recipe_decompose.json new file mode 100644 index 0000000..a2a7538 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:clinker_brick_stairs" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_block", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_stonecutting.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_stonecutting.json new file mode 100644 index 0000000..df6aece --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_stairs_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "ariasessentials:clinker_brick_block" + }, + "result": "ariasessentials:clinker_brick_stairs", + "count": 1 +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_wall_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_wall_recipe.json new file mode 100644 index 0000000..463e160 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_wall_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " ", + "CCC", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:clinker_brick_block" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_wall", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_wall_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_wall_recipe_decompose.json new file mode 100644 index 0000000..b530794 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/clinker_brick_wall_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "WW", + "WW" + ], + "key": { + "W": { + "item": "ariasessentials:clinker_brick_wall" + } + }, + "result": { + "item": "ariasessentials:clinker_brick_block", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/metal_bar_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/metal_bar_recipe.json new file mode 100644 index 0000000..83218d4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/metal_bar_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " S", + " S ", + "S " + ], + "key": { + "S": { + "item": "minecraft:iron_ingot" + } + }, + "result": { + "item": "ariasessentials:metal_bar", + "count": 12 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_door_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_door_recipe.json new file mode 100644 index 0000000..7af05f1 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_door_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "PP", + "PP", + "PP" + ], + "key": { + "P": { + "item": "ariasessentials:old_industrial_wood_planks" + } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_door", + "count": 2 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_planks_from_treatedwood.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_planks_from_treatedwood.json new file mode 100644 index 0000000..8767150 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_planks_from_treatedwood.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "WC", + "WW" + ], + "key": { + "C": { + "item": "minecraft:charcoal" + }, + "W": { + "tag": "forge:treated_wood" + } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_planks", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_planks_from_vanilla.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_planks_from_vanilla.json new file mode 100644 index 0000000..87c3651 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_planks_from_vanilla.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "WW", + "WC" + ], + "key": { + "C": { + "item": "minecraft:charcoal" + }, + "W": { + "tag": "minecraft:planks" + } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_planks", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_slab_recipe.json new file mode 100644 index 0000000..356bcf5 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_slab_recipe.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:old_industrial_wood_planks" + } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_slab_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_slab_recipe_decompose.json new file mode 100644 index 0000000..9f13ccd --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_slab_recipe_decompose.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "B", + "B" + ], + "key": { + "B": { "item": "ariasessentials:old_industrial_wood_slab" } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_planks", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_stairs_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_stairs_recipe.json new file mode 100644 index 0000000..91a2112 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_stairs_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C ", + "CC ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:old_industrial_wood_planks" + } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_stairs", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_stairs_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_stairs_recipe_decompose.json new file mode 100644 index 0000000..66b0efa --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/old_industrial_wood_stairs_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:old_industrial_wood_stairs" + } + }, + "result": { + "item": "ariasessentials:old_industrial_wood_planks", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/panzerglass_block_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/panzerglass_block_recipe.json new file mode 100644 index 0000000..dfa7f35 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/panzerglass_block_recipe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SGS", + "GSG", + "SGS" + ], + "key": { + "G": { + "item": "minecraft:glass" + }, + "S": { + "item": "ariasessentials:metal_bar" + } + }, + "result": { + "item": "ariasessentials:panzerglass_block", + "count": 8 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/panzerglass_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/panzerglass_slab_recipe.json new file mode 100644 index 0000000..8576c0e --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/panzerglass_slab_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " ", + " ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:panzerglass_block" + } + }, + "result": { + "item": "ariasessentials:panzerglass_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_block_from_vanilla.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_block_from_vanilla.json new file mode 100644 index 0000000..171c271 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_block_from_vanilla.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SCS", + "CSC", + "SCS" + ], + "key": { + "C": { + "item": "minecraft:gray_concrete_powder" + }, + "S": { + "item": "ariasessentials:metal_bar" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_slab_recipe.json new file mode 100644 index 0000000..28577d5 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_slab_recipe.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_slab_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_slab_recipe_decompose.json new file mode 100644 index 0000000..e92b9af --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_slab_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C", + "C" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete_slab" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_stairs_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_stairs_recipe.json new file mode 100644 index 0000000..88daa11 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_stairs_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C ", + "CC ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_stairs", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_stairs_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_stairs_recipe_decompose.json new file mode 100644 index 0000000..841206c --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_stairs_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:rebar_concrete_stairs" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_recipe.json new file mode 100644 index 0000000..12d6f95 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_recipe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CC", + "CC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_tile", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_recipe_decompose.json new file mode 100644 index 0000000..0e54dce --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CC", + "CC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete_tile" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_slab_recipe.json new file mode 100644 index 0000000..eb64258 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_slab_recipe.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete_tile" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_tile_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_slab_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_slab_recipe_decompose.json new file mode 100644 index 0000000..352b0eb --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_slab_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C", + "C" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete_tile_slab" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_tile", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_stairs_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_stairs_recipe.json new file mode 100644 index 0000000..28b5b25 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_stairs_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C ", + "CC ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete_tile" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_tile_stairs", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_stairs_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_stairs_recipe_decompose.json new file mode 100644 index 0000000..5f503f3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_tile_stairs_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:rebar_concrete_tile_stairs" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_tile", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_wall_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_wall_recipe.json new file mode 100644 index 0000000..71a86e9 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_wall_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " ", + "CCC", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:rebar_concrete" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete_wall", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_wall_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_wall_recipe_decompose.json new file mode 100644 index 0000000..51b5503 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/rebar_concrete_wall_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:rebar_concrete_wall" + } + }, + "result": { + "item": "ariasessentials:rebar_concrete", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_slab_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_slab_recipe.json new file mode 100644 index 0000000..18d95d7 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_slab_recipe.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:slag_brick_block" + } + }, + "result": { + "item": "ariasessentials:slag_brick_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_stairs_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_stairs_recipe.json new file mode 100644 index 0000000..bc39400 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_stairs_recipe.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "C ", + "CC ", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:slag_brick_block" + } + }, + "result": { + "item": "ariasessentials:slag_brick_stairs", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_stairs_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_stairs_recipe_decompose.json new file mode 100644 index 0000000..9bed34a --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_stairs_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:slag_brick_stairs" + } + }, + "result": { + "item": "ariasessentials:slag_brick_block", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_vanilla.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_vanilla.json new file mode 100644 index 0000000..0336b4f --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_vanilla.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "ASA", + "BAB" + ], + "key": { + "B": { + "item": "minecraft:brick" + }, + "A": { + "tag": "ariasessentials:brick_ingots" + }, + "S": { + "item": "minecraft:nether_bricks" + } + }, + "result": { + "item": "ariasessentials:slag_brick_block", + "count": 8 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_wall_recipe.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_wall_recipe.json new file mode 100644 index 0000000..091e5ae --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_wall_recipe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:slag_brick_block" + } + }, + "result": { + "item": "ariasessentials:slag_brick_wall", + "count": 6 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_wall_recipe_decompose.json b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_wall_recipe_decompose.json new file mode 100644 index 0000000..58a182d --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/engineersdecor/finalized/slag_brick_wall_recipe_decompose.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "SS", + "SS" + ], + "key": { + "S": { + "item": "ariasessentials:slag_brick_wall" + } + }, + "result": { + "item": "ariasessentials:slag_brick_block", + "count": 4 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/eternium_block.json b/src/old/resources/data/ariasessentials/recipes/eternium_block.json new file mode 100644 index 0000000..db703be --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/eternium_block.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CCC", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:eternium_ingot" + } + }, + "result": { + "item": "ariasessentials:eternium_block", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json b/src/old/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json new file mode 100644 index 0000000..4ca9bbd --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:eternium_block" + } + ], + "result": { + "item": "ariasessentials:eternium_ingot", + "count": 9 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/eternium_ingot.json b/src/old/resources/data/ariasessentials/recipes/eternium_ingot.json new file mode 100644 index 0000000..5858a82 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/eternium_ingot.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:smelting", + "ingredient": [ + { + "item": "ariasessentials:eternium_ore" + }, + { + "item": "ariasessentials:eternium_ore_block" + }, + { + "item": "ariasessentials:deepslate_eternium_ore_block" + } + ], + "result": "ariasessentials:eternium_ingot", + "experience": 0.5, + "cookingtime": 25 +} diff --git a/src/old/resources/data/ariasessentials/recipes/eternium_rod.json b/src/old/resources/data/ariasessentials/recipes/eternium_rod.json new file mode 100644 index 0000000..940a373 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/eternium_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "ccc", + "ggg", + "ccc"], + "key": { + "c": { + "item": "minecraft:obsidian" + }, + "g": { + "tag": "forge:ingots/eternium" + } + }, + "result": { + "item": "ariasessentials:eternium_rod", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/green_brick.json b/src/old/resources/data/ariasessentials/recipes/green_brick.json new file mode 100644 index 0000000..3c00af7 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/green_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:green_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/holosphere.json.old b/src/old/resources/data/ariasessentials/recipes/holosphere.json.old new file mode 100644 index 0000000..8747ed3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/holosphere.json.old @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " I ", + "IXI", + " I " + ], + "key": { + "X": { + "item": "minecraft:iron_block" + }, + "I": { + "item": "minecraft:iron_ingot" + } + }, + "result": { + "item": "tetra:holo", + "count": 1, + "nbt": { + "id": "9503de92-046c-4d61-8afe-8c0d71c6afae", + "holo/core": "holo/core", + "holo/core_material": "core/dim", + "holo/frame": "holo/frame", + "holo/frame_material": "frame/ancient" + } + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/ihan_crystal.json b/src/old/resources/data/ariasessentials/recipes/ihan_crystal.json new file mode 100644 index 0000000..995affa --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/ihan_crystal.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " F ", + "FGF", + " F " + ], + "key": { + "F": { + "item": "forge:ingots/eternium" + }, + "G": { + "item": "minecraft:ender_pearl" + } + }, + "result": { + "item": "ariasessentials:ihan_crystal", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json b/src/old/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json new file mode 100644 index 0000000..aca8422 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "ingredient": [ + { + "item": "minecraft:rotten_flesh" + } + ], + "result": "minecraft:leather", + "experience": 3, + "cookingtime": 48 +} diff --git a/src/old/resources/data/ariasessentials/recipes/light_blue_brick.json b/src/old/resources/data/ariasessentials/recipes/light_blue_brick.json new file mode 100644 index 0000000..085801b --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/light_blue_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:light_blue_dye" + } + ], + "result": { + "item": "ariasessentials:light_blue_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/lime_brick.json b/src/old/resources/data/ariasessentials/recipes/lime_brick.json new file mode 100644 index 0000000..372ee4e --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/lime_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:lime_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/magma.json b/src/old/resources/data/ariasessentials/recipes/magma.json new file mode 100644 index 0000000..1aac210 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/magma.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "FFF", + "FFF" + ], + "key": { + "F": { + "item": "ariasessentials:magma_powder" + } + }, + "result": { + "item": "minecraft:magma_block", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/magma_powder.json b/src/old/resources/data/ariasessentials/recipes/magma_powder.json new file mode 100644 index 0000000..7f511ae --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/magma_powder.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "F" + ], + "key": { + "F": { + "item": "minecraft:magma_block" + } + }, + "result": { + "item": "ariasessentials:magma_powder", + "count": 9 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/mob_capture_ball.json b/src/old/resources/data/ariasessentials/recipes/mob_capture_ball.json new file mode 100644 index 0000000..321780a --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/mob_capture_ball.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "XXX", + "XYX", + "XXX" + ], + "key": { + "X": { + "tag": "forge:ingots/eternium" + }, + "Y": { + "item": "minecraft:stone_button" + } + }, + "result": { + "item": "ariasessentials:mob_capture_ball", + "count": 1 + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/red_brick.json b/src/old/resources/data/ariasessentials/recipes/red_brick.json new file mode 100644 index 0000000..7099cd9 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/red_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:red_dye" + } + ], + "result": { + "item": "ariasessentials:red_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json b/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json new file mode 100644 index 0000000..95fc727 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_chunk" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json b/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json new file mode 100644 index 0000000..95fc727 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_chunk" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json b/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json new file mode 100644 index 0000000..5df9c24 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_shard" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json b/src/old/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json new file mode 100644 index 0000000..f19f69e --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CGC", + "CCC" + ], + "key": { + "C": { + "item": "minecraft:magma_block" + }, + "G": { + "item": "minecraft:bedrock" + } + }, + "result": { + "item": "tetra:seeping_bedrock", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json new file mode 100644 index 0000000..993440c --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:cyan_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:cyan", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json new file mode 100644 index 0000000..9689919 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + } + }, + "result": { + "item": "ariasessentials:cyan_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json new file mode 100644 index 0000000..cf074e5 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json new file mode 100644 index 0000000..aa34499 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile_br", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json new file mode 100644 index 0000000..bb535c4 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile_to_wall", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json new file mode 100644 index 0000000..3eb014a --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_wall_variant_1", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json new file mode 100644 index 0000000..518fd37 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_wall_variant_2", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json new file mode 100644 index 0000000..9e902c6 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_light", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json new file mode 100644 index 0000000..99dbae0 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json new file mode 100644 index 0000000..350a2c3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json new file mode 100644 index 0000000..ad4bd78 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json new file mode 100644 index 0000000..3ac488e --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:blue_brick" + }, + "B": { + "item": "ariasessentials:cyan_brick" + }, + "C": { + "item": "ariasessentials:light_blue_brick" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json new file mode 100644 index 0000000..e2aa242 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:blue_pool_tile_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..ef7113b --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..cc4f622 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..9178499 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json new file mode 100644 index 0000000..c7d3556 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:blue_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_blue_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json new file mode 100644 index 0000000..0b34ae2 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_blue_pool_tile_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_blue_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json new file mode 100644 index 0000000..f2e1d1a --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:pool_tile_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json new file mode 100644 index 0000000..fd33533 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..bf5e481 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json new file mode 100644 index 0000000..fc77ade --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json new file mode 100644 index 0000000..9bfed4f --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json new file mode 100644 index 0000000..6b90ad3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_pool_tile_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json new file mode 100644 index 0000000..2655a56 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:pool_tile_light", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json new file mode 100644 index 0000000..90aea35 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json new file mode 100644 index 0000000..cfdccdd --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json new file mode 100644 index 0000000..57fd406 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json new file mode 100644 index 0000000..6720029 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:white_brick" + } + }, + "result": { + "item": "ariasessentials:pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_light.json new file mode 100644 index 0000000..3fff49d --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:cyan_pool_tile_light", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_slab.json new file mode 100644 index 0000000..1f6686d --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan_pool_tile" + } + }, + "result": { + "item": "ariasessentials:cyan_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_stairs.json new file mode 100644 index 0000000..382c64f --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan_pool_tile" + } + }, + "result": { + "item": "ariasessentials:cyan_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_wall.json new file mode 100644 index 0000000..fd78697 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan_pool_tile" + } + }, + "result": { + "item": "ariasessentials:cyan_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tiles.json new file mode 100644 index 0000000..0adc1b5 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/cyan_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:cyan_brick" + }, + "B": { + "item": "ariasessentials:cyan_brick" + }, + "C": { + "item": "ariasessentials:light_cyan_brick" + } + }, + "result": { + "item": "ariasessentials:cyan_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_light.json new file mode 100644 index 0000000..1013bec --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:cyan_pool_tile_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_cyan_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_slab.json new file mode 100644 index 0000000..c2f760e --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_cyan_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_cyan_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_stairs.json new file mode 100644 index 0000000..f1c8ed5 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_cyan_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_cyan_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_wall.json new file mode 100644 index 0000000..cb99340 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_cyan_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_cyan_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tiles.json new file mode 100644 index 0000000..a443881 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/dirty_cyan_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:cyan_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_cyan_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/filthy_cyan_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/filthy_cyan_pool_light.json new file mode 100644 index 0000000..b38a98d --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/cyan/filthy_cyan_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_cyan_pool_tile_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_cyan_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/dark/dark_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/dark/dark_pool_tile_stairs.json new file mode 100644 index 0000000..34c3935 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/dark/dark_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dark_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dark_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/dark/dark_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/dark/dark_pool_tiles.json new file mode 100644 index 0000000..dc80150 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/dark/dark_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "item": "ariasessentials:dark_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json new file mode 100644 index 0000000..7c3080c --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:green_pool_tile_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_green_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..a220487 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..f8266ec --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..a38b332 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json new file mode 100644 index 0000000..8f1ec57 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:green_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_green_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json new file mode 100644 index 0000000..2342eeb --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_green_pool_tile_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_green_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json new file mode 100644 index 0000000..9350197 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_light", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json new file mode 100644 index 0000000..c22d7c9 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json new file mode 100644 index 0000000..af9f7db --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json new file mode 100644 index 0000000..a63a608 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json new file mode 100644 index 0000000..c44b7b0 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABB", + "BAA", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:lime_brick" + }, + "B": { + "item": "ariasessentials:green_brick" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json new file mode 100644 index 0000000..4882cbc --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:red_pool_tile_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:dirty_red_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..8ad983e --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..384fac9 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..ef50615 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json new file mode 100644 index 0000000..94623dc --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + }, + "B": { + "item": "minecraft:slime_ball" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json new file mode 100644 index 0000000..6f4dd48 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_red_pool_tile_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_red_pool_tile_light", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json new file mode 100644 index 0000000..d71bfdd --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_light", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json new file mode 100644 index 0000000..b19f6b3 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_slab", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json new file mode 100644 index 0000000..e4c18b8 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json new file mode 100644 index 0000000..0686737 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_wall", + "count": 6 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json new file mode 100644 index 0000000..5698583 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:red_brick" + }, + "B": { + "item": "ariasessentials:dark_red_brick" + }, + "C": { + "item": "minecraft:brick" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json new file mode 100644 index 0000000..0fbcc41 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:red_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:blood_red", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json new file mode 100644 index 0000000..8bc42d0 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + } + }, + "result": { + "item": "ariasessentials:red_stairs", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json new file mode 100644 index 0000000..af1edd1 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json new file mode 100644 index 0000000..f70a201 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile_br", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json new file mode 100644 index 0000000..f945bdb --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile_to_wall", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json new file mode 100644 index 0000000..70492cb --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_wall_variant_1", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json new file mode 100644 index 0000000..5808d47 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_wall_variant_2", + "count": 2 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/void.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/void.json new file mode 100644 index 0000000..ac7dccd --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/void.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:black_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:void", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json new file mode 100644 index 0000000..ad6f1de --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:white_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:whiteout", + "count": 4 + } +} diff --git a/src/old/resources/data/ariasessentials/recipes/tiab.json b/src/old/resources/data/ariasessentials/recipes/tiab.json new file mode 100644 index 0000000..7e7ed1b --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/tiab.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GGG", + "DCD", + "LBL" + ], + "key": { + "G": { + "tag": "forge:ingots/gold" + }, + "D": { + "tag": "forge:gems/diamond" + }, + "L": { + "tag": "forge:gems/lapis" + }, + "C": { + "item": "minecraft:clock" + }, + "B": { + "item": "minecraft:glass_bottle" + } + }, + "result": { + "item": "ariasessentials:tiab" + } +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/recipes/white_brick.json b/src/old/resources/data/ariasessentials/recipes/white_brick.json new file mode 100644 index 0000000..c1e9721 --- /dev/null +++ b/src/old/resources/data/ariasessentials/recipes/white_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:white_dye" + } + ], + "result": { + "item": "ariasessentials:white_brick", + "count": 1 + } +} diff --git a/src/old/resources/data/ariasessentials/tags/blocks/brimstone.json b/src/old/resources/data/ariasessentials/tags/blocks/brimstone.json new file mode 100644 index 0000000..4b0beca --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/blocks/brimstone.json @@ -0,0 +1,6 @@ +{ + "values": [ + "biomesoplenty:brimstone", + "byg:brimstone" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/blocks/deprecated.json b/src/old/resources/data/ariasessentials/tags/blocks/deprecated.json new file mode 100644 index 0000000..d6649e7 --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/blocks/deprecated.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/blocks/engineersdecor.json b/src/old/resources/data/ariasessentials/tags/blocks/engineersdecor.json new file mode 100644 index 0000000..8491c22 --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/blocks/engineersdecor.json @@ -0,0 +1,29 @@ +{ + "values": [ + "ariasessentials:clinker_brick_block", + "ariasessentials:clinker_brick_slab", + "ariasessentials:clinker_brick_stairs", + "ariasessentials:clinker_brick_wall", + + "ariasessentials:clinker_brick_stained_block", + "ariasessentials:clinker_brick_stained_slab", + "ariasessentials:clinker_brick_stained_stairs", + + "ariasessentials:slag_brick_block", + "ariasessentials:slag_brick_slab", + "ariasessentials:slag_brick_stairs", + "ariasessentials:slag_brick_wall", + + "ariasessentials:rebar_concrete", + "ariasessentials:rebar_concrete_slab", + "ariasessentials:rebar_concrete_stairs", + "ariasessentials:rebar_concrete_wall", + + "ariasessentials:rebar_concrete_tile", + "ariasessentials:rebar_concrete_tile_slab", + "ariasessentials:rebar_concrete_tile_stairs", + + "ariasessentials:panzerglass_block", + "ariasessentials:panzerglass_slab" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/blocks/plain_concrete.json b/src/old/resources/data/ariasessentials/tags/blocks/plain_concrete.json new file mode 100644 index 0000000..b53590f --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/blocks/plain_concrete.json @@ -0,0 +1,37 @@ +{ + "replace": false, + "values": [ + "minecraft:black_concrete_powder", + "minecraft:blue_concrete_powder", + "minecraft:brown_concrete_powder", + "minecraft:cyan_concrete_powder", + "minecraft:gray_concrete_powder", + "minecraft:green_concrete_powder", + "minecraft:light_blue_concrete_powder", + "minecraft:light_gray_concrete_powder", + "minecraft:lime_concrete_powder", + "minecraft:magenta_concrete_powder", + "minecraft:orange_concrete_powder", + "minecraft:pink_concrete_powder", + "minecraft:purple_concrete_powder", + "minecraft:red_concrete_powder", + "minecraft:white_concrete_powder", + "minecraft:yellow_concrete_powder", + "minecraft:black_concrete", + "minecraft:blue_concrete", + "minecraft:brown_concrete", + "minecraft:cyan_concrete", + "minecraft:gray_concrete", + "minecraft:green_concrete", + "minecraft:light_blue_concrete", + "minecraft:light_gray_concrete", + "minecraft:lime_concrete", + "minecraft:magenta_concrete", + "minecraft:orange_concrete", + "minecraft:pink_concrete", + "minecraft:purple_concrete", + "minecraft:red_concrete", + "minecraft:white_concrete", + "minecraft:yellow_concrete" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/blocks/pool_tiles.json b/src/old/resources/data/ariasessentials/tags/blocks/pool_tiles.json new file mode 100644 index 0000000..fdfa1ed --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/blocks/pool_tiles.json @@ -0,0 +1,69 @@ +{ + "values": [ + + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_tile_wall", + "ariasessentials:pool_tile_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_tile_light", + "ariasessentials:filthy_pool_tile_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_tile_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_tile_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_light", + "ariasessentials:filthy_green_pool_tile_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_tile_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_light", + "ariasessentials:filthy_blue_pool_tile_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_tile_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_light", + "ariasessentials:filthy_red_pool_tile_light", + + "ariasessentials:cyan_pool_tile", + "ariasessentials:cyan_pool_tile_stairs", + "ariasessentials:cyan_pool_tile_slab", + "ariasessentials:cyan_pool_tile_wall", + "ariasessentials:cyan_pool_tile_light", + "ariasessentials:dirty_cyan_pool_tile", + "ariasessentials:dirty_cyan_pool_tile_stairs", + "ariasessentials:dirty_cyan_pool_tile_slab", + "ariasessentials:dirty_cyan_pool_tile_wall", + "ariasessentials:dirty_cyan_pool_tile_light", + "ariasessentials:filthy_cyan_pool_tile_light" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/items/brick_blocks.json b/src/old/resources/data/ariasessentials/tags/items/brick_blocks.json new file mode 100644 index 0000000..6e0b02b --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/items/brick_blocks.json @@ -0,0 +1,7 @@ +{ + "replace": false, + "values": [ + "minecraft:bricks", + "minecraft:nether_bricks" + ] +} diff --git a/src/old/resources/data/ariasessentials/tags/items/brick_ingots.json b/src/old/resources/data/ariasessentials/tags/items/brick_ingots.json new file mode 100644 index 0000000..3fad0aa --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/items/brick_ingots.json @@ -0,0 +1,7 @@ +{ + "replace": false, + "values": [ + "minecraft:brick", + "minecraft:nether_brick" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/items/deprecated.json b/src/old/resources/data/ariasessentials/tags/items/deprecated.json new file mode 100644 index 0000000..d6649e7 --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/items/deprecated.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/items/engineersdecor.json b/src/old/resources/data/ariasessentials/tags/items/engineersdecor.json new file mode 100644 index 0000000..8491c22 --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/items/engineersdecor.json @@ -0,0 +1,29 @@ +{ + "values": [ + "ariasessentials:clinker_brick_block", + "ariasessentials:clinker_brick_slab", + "ariasessentials:clinker_brick_stairs", + "ariasessentials:clinker_brick_wall", + + "ariasessentials:clinker_brick_stained_block", + "ariasessentials:clinker_brick_stained_slab", + "ariasessentials:clinker_brick_stained_stairs", + + "ariasessentials:slag_brick_block", + "ariasessentials:slag_brick_slab", + "ariasessentials:slag_brick_stairs", + "ariasessentials:slag_brick_wall", + + "ariasessentials:rebar_concrete", + "ariasessentials:rebar_concrete_slab", + "ariasessentials:rebar_concrete_stairs", + "ariasessentials:rebar_concrete_wall", + + "ariasessentials:rebar_concrete_tile", + "ariasessentials:rebar_concrete_tile_slab", + "ariasessentials:rebar_concrete_tile_stairs", + + "ariasessentials:panzerglass_block", + "ariasessentials:panzerglass_slab" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/tags/items/pool_tiles.json b/src/old/resources/data/ariasessentials/tags/items/pool_tiles.json new file mode 100644 index 0000000..fdfa1ed --- /dev/null +++ b/src/old/resources/data/ariasessentials/tags/items/pool_tiles.json @@ -0,0 +1,69 @@ +{ + "values": [ + + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_tile_wall", + "ariasessentials:pool_tile_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_tile_light", + "ariasessentials:filthy_pool_tile_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_tile_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_tile_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_light", + "ariasessentials:filthy_green_pool_tile_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_tile_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_light", + "ariasessentials:filthy_blue_pool_tile_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_tile_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_light", + "ariasessentials:filthy_red_pool_tile_light", + + "ariasessentials:cyan_pool_tile", + "ariasessentials:cyan_pool_tile_stairs", + "ariasessentials:cyan_pool_tile_slab", + "ariasessentials:cyan_pool_tile_wall", + "ariasessentials:cyan_pool_tile_light", + "ariasessentials:dirty_cyan_pool_tile", + "ariasessentials:dirty_cyan_pool_tile_stairs", + "ariasessentials:dirty_cyan_pool_tile_slab", + "ariasessentials:dirty_cyan_pool_tile_wall", + "ariasessentials:dirty_cyan_pool_tile_light", + "ariasessentials:filthy_cyan_pool_tile_light" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json b/src/old/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json new file mode 100644 index 0000000..a790d6b --- /dev/null +++ b/src/old/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + }, + "state": { + "Name": "ariasessentials:eternium_ore_block" + } + }, + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + }, + "state": { + "Name": "ariasessentials:deepslate_eternium_ore_block" + } + } + ] + } +} diff --git a/src/old/resources/data/ariasessentials/worldgen/noise_settings/builder.json b/src/old/resources/data/ariasessentials/worldgen/noise_settings/builder.json new file mode 100644 index 0000000..e308461 --- /dev/null +++ b/src/old/resources/data/ariasessentials/worldgen/noise_settings/builder.json @@ -0,0 +1,2448 @@ +{ + "sea_level": -64, + "disable_mob_generation": true, + "aquifers_enabled": false, + "ore_veins_enabled": false, + "legacy_random_source": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "noise": { + "min_y": -64, + "height": 384, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1, + "y_scale": 0.5 + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1, + "y_scale": 1 + }, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "continents": "minecraft:overworld/continents", + "erosion": "minecraft:overworld/erosion", + "depth": "minecraft:overworld/depth", + "ridges": "minecraft:overworld/ridges", + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "min": -64, + "max": 64 + } + } + } + } + } + } + }, + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.25, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -50, + "from_value": 0, + "to_value": 0.05 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2, + "argument2": { + "type": "minecraft:add", + "argument1": -4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "min_inclusive": -1000000, + "max_exclusive": 1.5625, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1, + "y_scale": 8 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1, + "y_scale": 0.6666666666666666 + } + }, + "min": -1, + "max": 1 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "min": 0, + "max": 0.5 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "min_inclusive": -1000000, + "max_exclusive": 0.03, + "when_in_range": -1000000, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "vein_toggle": 0, + "vein_ridged": 0, + "vein_gap": 0 + }, + "spawn_target": [ + { + "temperature": 0, + "humidity": 0, + "continentalness": 0, + "erosion": 0, + "weirdness": 0, + "depth": 0, + "offset": 0 + }, + { + "temperature": 0, + "humidity": 0, + "continentalness": 0, + "erosion": 0, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + }, + "false_at_and_above": { + "above_bottom": 5 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": 0, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": 0, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.06060606060606061, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.11515151515151514, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": -0.5, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": -0.0625, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 6 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 30 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + }, + "false_at_and_above": { + "absolute": 8 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} diff --git a/src/old/resources/data/ariasessentials/worldgen/noise_settings/resource.json b/src/old/resources/data/ariasessentials/worldgen/noise_settings/resource.json new file mode 100644 index 0000000..514a460 --- /dev/null +++ b/src/old/resources/data/ariasessentials/worldgen/noise_settings/resource.json @@ -0,0 +1,2542 @@ +{ + "sea_level": 63, + "disable_mob_generation": true, + "aquifers_enabled": true, + "ore_veins_enabled": true, + "legacy_random_source": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "noise": { + "min_y": -64, + "height": 384, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1, + "y_scale": 0.5 + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1, + "y_scale": 1 + }, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "continents": "minecraft:overworld/continents", + "erosion": "minecraft:overworld/erosion", + "depth": "minecraft:overworld/depth", + "ridges": "minecraft:overworld/ridges", + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "min": -64, + "max": 64 + } + } + } + } + } + } + }, + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "min_inclusive": -1000000, + "max_exclusive": 1.5625, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1, + "y_scale": 8 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1, + "y_scale": 0.6666666666666666 + } + }, + "min": -1, + "max": 1 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "min": 0, + "max": 0.5 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "min_inclusive": -1000000, + "max_exclusive": 0.03, + "when_in_range": -1000000, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0 + } + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4, + "y_scale": 4 + }, + "when_out_of_range": 0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4, + "y_scale": 4 + }, + "when_out_of_range": 0 + } + } + } + } + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1, + "y_scale": 1 + } + }, + "spawn_target": [ + { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + -0.16 + ], + "depth": 0, + "offset": 0 + }, + { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + 0.16, + 1 + ], + "depth": 0, + "offset": 0 + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + }, + "false_at_and_above": { + "above_bottom": 5 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": 0, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": 0, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.06060606060606061, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.11515151515151514, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": -0.5, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": -0.0625, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 6 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 30 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + }, + "false_at_and_above": { + "absolute": 8 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} diff --git a/src/old/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json b/src/old/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json new file mode 100644 index 0000000..094ccfc --- /dev/null +++ b/src/old/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json @@ -0,0 +1,27 @@ +{ + "feature": "ariasessentials:eternium_oregen_overworld", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -20 + }, + "max_inclusive": { + "absolute": 25 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/old/resources/data/forge/tags/blocks/ore_rates/singular.json b/src/old/resources/data/forge/tags/blocks/ore_rates/singular.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/old/resources/data/forge/tags/blocks/ore_rates/singular.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/blocks/ores.json b/src/old/resources/data/forge/tags/blocks/ores.json new file mode 100644 index 0000000..31b4208 --- /dev/null +++ b/src/old/resources/data/forge/tags/blocks/ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#forge:ores/cobalt", + "#forge:ores/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/blocks/ores/eternium.json b/src/old/resources/data/forge/tags/blocks/ores/eternium.json new file mode 100644 index 0000000..13baeba --- /dev/null +++ b/src/old/resources/data/forge/tags/blocks/ores/eternium.json @@ -0,0 +1,6 @@ +{ + "values": [ + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json b/src/old/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/old/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/blocks/storage_blocks.json b/src/old/resources/data/forge/tags/blocks/storage_blocks.json new file mode 100644 index 0000000..298093d --- /dev/null +++ b/src/old/resources/data/forge/tags/blocks/storage_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:storage_blocks/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/blocks/storage_blocks/eternium.json b/src/old/resources/data/forge/tags/blocks/storage_blocks/eternium.json new file mode 100644 index 0000000..b351961 --- /dev/null +++ b/src/old/resources/data/forge/tags/blocks/storage_blocks/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "otemod:eternium_block" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/brimstone.json b/src/old/resources/data/forge/tags/items/brimstone.json new file mode 100644 index 0000000..b85d8d6 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/brimstone.json @@ -0,0 +1,5 @@ +{ + "values": [ + "biomesoplenty:brimstone" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/dusts.json b/src/old/resources/data/forge/tags/items/dusts.json new file mode 100644 index 0000000..b35632b --- /dev/null +++ b/src/old/resources/data/forge/tags/items/dusts.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:dusts/magma" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/dusts/magma.json b/src/old/resources/data/forge/tags/items/dusts/magma.json new file mode 100644 index 0000000..6dda7ad --- /dev/null +++ b/src/old/resources/data/forge/tags/items/dusts/magma.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:magma_powder" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/ingots.json b/src/old/resources/data/forge/tags/items/ingots.json new file mode 100644 index 0000000..139e30f --- /dev/null +++ b/src/old/resources/data/forge/tags/items/ingots.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:ingots/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/ingots/eternium.json b/src/old/resources/data/forge/tags/items/ingots/eternium.json new file mode 100644 index 0000000..47823d5 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/ingots/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_ingot" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/nuggets.json b/src/old/resources/data/forge/tags/items/nuggets.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/nuggets.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/ore_rates/singular.json b/src/old/resources/data/forge/tags/items/ore_rates/singular.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/ore_rates/singular.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/ores.json b/src/old/resources/data/forge/tags/items/ores.json new file mode 100644 index 0000000..12bf5a3 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/ores.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:ores/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/ores/eternium.json b/src/old/resources/data/forge/tags/items/ores/eternium.json new file mode 100644 index 0000000..6c4451e --- /dev/null +++ b/src/old/resources/data/forge/tags/items/ores/eternium.json @@ -0,0 +1,7 @@ +{ + "values": [ + "ariasessentials:eternium_ore", + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/ores_in_ground/netherrack.json b/src/old/resources/data/forge/tags/items/ores_in_ground/netherrack.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/ores_in_ground/netherrack.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/raw_materials.json b/src/old/resources/data/forge/tags/items/raw_materials.json new file mode 100644 index 0000000..ac202c0 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/raw_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:raw_materials/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/raw_materials/eternium.json b/src/old/resources/data/forge/tags/items/raw_materials/eternium.json new file mode 100644 index 0000000..15710e6 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/raw_materials/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_ore" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/rods.json b/src/old/resources/data/forge/tags/items/rods.json new file mode 100644 index 0000000..7a65d15 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/rods.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:rods/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/rods/eternium.json b/src/old/resources/data/forge/tags/items/rods/eternium.json new file mode 100644 index 0000000..03dc005 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/rods/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_rod" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/storage_blocks.json b/src/old/resources/data/forge/tags/items/storage_blocks.json new file mode 100644 index 0000000..298093d --- /dev/null +++ b/src/old/resources/data/forge/tags/items/storage_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:storage_blocks/eternium" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/forge/tags/items/storage_blocks/eternium.json b/src/old/resources/data/forge/tags/items/storage_blocks/eternium.json new file mode 100644 index 0000000..16ae335 --- /dev/null +++ b/src/old/resources/data/forge/tags/items/storage_blocks/eternium.json @@ -0,0 +1,5 @@ +{ + "values":[ + "ariasessentials:eternium_block" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json b/src/old/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json new file mode 100644 index 0000000..51de7df --- /dev/null +++ b/src/old/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "minecraft:budding_amethyst" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:amethyst_block" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/old/resources/data/minecraft/tags/blocks/mineable/pickaxe.json new file mode 100644 index 0000000..fbcb62e --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -0,0 +1,15 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block", + "ariasessentials:eternium_block", + "ariasessentials:mini_sun", + + + "#ariasessentials:pool_tiles", + + "#ariasessentials:engineersdecor" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/needs_diamond_tool.json b/src/old/resources/data/minecraft/tags/blocks/needs_diamond_tool.json new file mode 100644 index 0000000..a56f1e5 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/needs_diamond_tool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:mini_sun" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/needs_iron_tool.json b/src/old/resources/data/minecraft/tags/blocks/needs_iron_tool.json new file mode 100644 index 0000000..2a9ad8a --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/needs_iron_tool.json @@ -0,0 +1,12 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block", + "ariasessentials:eternium_block", + + "#ariasessentials:engineersdecor", + "#ariasessentials:pool_tiles" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/slabs.json b/src/old/resources/data/minecraft/tags/blocks/slabs.json new file mode 100644 index 0000000..818d8dd --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/slabs.json @@ -0,0 +1,22 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:clinker_brick_slab", + "ariasessentials:clinker_brick_stained_slab", + "ariasessentials:slag_brick_slab", + "ariasessentials:rebar_concrete_slab", + "ariasessentials:panzerglass_slab", + + "ariasessentials:pool_tile_slab", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_slab" + + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/stairs.json b/src/old/resources/data/minecraft/tags/blocks/stairs.json new file mode 100644 index 0000000..ce94f5c --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/stairs.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:clinker_brick_stairs", + "ariasessentials:clinker_brick_stained_stairs", + "ariasessentials:slag_brick_stairs", + "ariasessentials:rebar_concrete_stairs", + + "ariasessentials:pool_tile_stairs", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_stairs" + + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/walls.json b/src/old/resources/data/minecraft/tags/blocks/walls.json new file mode 100644 index 0000000..e38afa6 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/walls.json @@ -0,0 +1,16 @@ +{ + "replace": false, + "values": [ + "ariasessentials:clinker_brick_wall", + "ariasessentials:slag_brick_wall", + "ariasessentials:rebar_concrete_wall", + "ariasessentials:pool_tile_wall", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_wall" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/wither_immune.json b/src/old/resources/data/minecraft/tags/blocks/wither_immune.json new file mode 100644 index 0000000..c8e10a3 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/wither_immune.json @@ -0,0 +1,22 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:panzerglass_block", + "ariasessentials:panzerglass_slab", + "ariasessentials:rebar_concrete", + "ariasessentials:rebar_concrete_slab", + "ariasessentials:rebar_concrete_stairs", + "ariasessentials:rebar_concrete_wall", + "ariasessentials:rebar_concrete_tile", + "ariasessentials:rebar_concrete_tile_slab", + "ariasessentials:rebar_concrete_tile_stairs", + "ariasessentials:eternium_block", + "ariasessentials:mini_sun", + + "#ariasessentials:pool_tiles", + "minecraft:spawner" + + + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/wool.json b/src/old/resources/data/minecraft/tags/blocks/wool.json new file mode 100644 index 0000000..ba320ef --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/wool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_wool" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/blocks/wool_carpet.json b/src/old/resources/data/minecraft/tags/blocks/wool_carpet.json new file mode 100644 index 0000000..ff7d208 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/blocks/wool_carpet.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_carpet" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/dyes.json b/src/old/resources/data/minecraft/tags/items/dyes.json new file mode 100644 index 0000000..310183f --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/dyes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_dye" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/piglin_loved.json b/src/old/resources/data/minecraft/tags/items/piglin_loved.json new file mode 100644 index 0000000..61c944d --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/piglin_loved.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#ariasessentials:deprecated" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/slabs.json b/src/old/resources/data/minecraft/tags/items/slabs.json new file mode 100644 index 0000000..65c4e63 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/slabs.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:clinker_brick_slab", + "ariasessentials:clinker_brick_stained_slab", + "ariasessentials:slag_brick_slab", + "ariasessentials:rebar_concrete_slab", + "ariasessentials:panzerglass_slab", + + "ariasessentials:pool_tile_slab", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_slab" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/stairs.json b/src/old/resources/data/minecraft/tags/items/stairs.json new file mode 100644 index 0000000..fba777a --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/stairs.json @@ -0,0 +1,20 @@ +{ + "replace": false, + "values": [ + + "ariasessentials:clinker_brick_stairs", + "ariasessentials:clinker_brick_stained_stairs", + "ariasessentials:slag_brick_stairs", + "ariasessentials:rebar_concrete_stairs", + + "ariasessentials:pool_tile_stairs", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_stairs" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/walls.json b/src/old/resources/data/minecraft/tags/items/walls.json new file mode 100644 index 0000000..e38afa6 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/walls.json @@ -0,0 +1,16 @@ +{ + "replace": false, + "values": [ + "ariasessentials:clinker_brick_wall", + "ariasessentials:slag_brick_wall", + "ariasessentials:rebar_concrete_wall", + "ariasessentials:pool_tile_wall", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_wall" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/wool.json b/src/old/resources/data/minecraft/tags/items/wool.json new file mode 100644 index 0000000..ba320ef --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/wool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_wool" + ] +} \ No newline at end of file diff --git a/src/old/resources/data/minecraft/tags/items/wool_carpet.json b/src/old/resources/data/minecraft/tags/items/wool_carpet.json new file mode 100644 index 0000000..ff7d208 --- /dev/null +++ b/src/old/resources/data/minecraft/tags/items/wool_carpet.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_carpet" + ] +} \ No newline at end of file diff --git a/src/old/resources/pack.mcmeta b/src/old/resources/pack.mcmeta new file mode 100644 index 0000000..f647c87 --- /dev/null +++ b/src/old/resources/pack.mcmeta @@ -0,0 +1,7 @@ +{ + "pack": { + "description": "Aria's Essentials", + "forge:data_pack_format": 10, + "pack_format": 9 + } +}